The code below works file in Chrome and Firefox, but delays firing the load event for 15+ seconds after the page loads on ie7 and ie8.
Any suggestions for getting the load event promptly in IE?
Uize.module ({
required:[
'Uize.Node.Event'
],
builder:function () {
Uize.Node.wire (window,'load',function () {alert ('Loaded!')});
}
});