> > <body onload="init();"> > Same problem, the function init doesn't get called.
>
> window.addEvent('load',init);
>
So
window.onload = init;
is not the correct way to do it?
> > <body onload="init();"> > Same problem, the function init doesn't get called.
>
> window.addEvent('load',init);
>
So
window.onload = init;
is not the correct way to do it?