Tagged Questions

1
vote
2answers
4k views

MooTools: domready vs load

With which will function(){} fire first? A) window.addEvent('domready', function(){}); B) window.addEvent('load', function(){});
0
votes
2answers
2k views

jQuery: recieve document ready() on child window

Hey, I'm trying to get notified when the child window I'm opening has its document loaded and ready. This doesn't seem to work: win = window.open(href, 'test', 'width=300, height=400'); win.focus(); ...