View Single Post
  #1  
Old 19th August 2009, 06:36
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default global.js on admin panel
got error on global,js error making line
Code:
        obj.firstChild.nodeValue = val;
part of code
Code:
function descriptor(val) {
        var obj;
        obj = document.getElementById("descriptor");
        if (!obj) return;
        obj.firstChild.nodeValue = val;
}
error code Error: obj.firstChild is null
Source File: http://pegasus.woano.lv/global.js
Line: 54

i bet i screwed up something
Reply With Quote