I still have issue calling my window.onload() what's the correct way to initialize my javascript on loading?

To correctly initialize onload() I had to add these lines:
if (window["forms_onloadHandlers"] == undefined) {
        window.onload = function()      {
        if (window.winOnLoad) winOnLoad();
        }
} else {
        var myinit = new Object();
        myinit.forms_onload = function() { winOnLoad();}
        forms_onloadHandlers.push(myinit);
}

hope this helps others...
Eli

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to