I have 4 divs (class=mydiv), each with an image in, the load method fires on all other browsers I\'ve tested but it does not fire on IE9.0. I don\'t know if it works in any
I had the same problem and solved using:
if ($.browser.msie && parseInt($.browser.version) < 10) { window.onload = new function() { console.log('LOADED IE'); } } else { $(window).load(function(){ console.log('LOADED'); }) }