Recently I ran into a mysterious problem that IE (6-8) is keeping throwing me an error. I don\'t know if this is the problem, but I think it is.
Open up the F12 deve
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.