The window.onload Problem - Solved!
Dean Edwards, creator of the awesome IE7 Javascript library exclaims that thewindow.onload Problem is Solved!. What’s the problem anyhow? Well, window.onload is not called until every element on the page has loaded (ie. images, other media, etc) which means that you DOM scripts that need to run on page load, have to wait to execute. If you users are on dial-up, this is a hugh problem. Enter his clever hack which fixes this by using some undocumented magic in IE and Firefox.



Hrrmm, this is not a problem, it’s a feature… onload should not kick in before everything is loaded AFAIK?