specifying a window.onload interferes with jQuery.ready?
Before loading jquery.js
, I have a simple:
window.onloa开发者_如何学God = function (){ /*dosomething*/ }
Do you know if that can interfere with $.ready
or jQuery in general?
Thanks
No problem with that at all. But be aware that the window.onload event will most likely fire after DOMContentReady (jQuery.ready()).
window.onload does fire after all images, iframes etc. were loaded.
精彩评论