I recently found a work-around for IE not recognizing $(window).load()
...
window.onload = function() {
alert("See me, hear me, touch me!");
};
This is a little different than $(function(){})
as it executes after all elements are loaded as opposed to when the DOM is ready.
I recently implemented this in another project and it worked wonderfully.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…