I'm a bit new to Javascript and am trying to do
oNewWin = window.open( ... );
then determine when the contents of oNewWin are completely loaded.
I've tried
oNewWin.attachE vent( "onload", myfunc);
but that doesn't work.
Can something of this sort be done?
Comment