Landed the patch, by Diego, that 1) Removes browser sniffing from the ready code and 2) Provides some form of fallback DOM Ready for Iframes in IE. Closes #2614.
This commit is contained in:
parent
5c21e44fce
commit
3b1cf91fa4
18
src/event.js
18
src/event.js
|
@ -526,9 +526,21 @@ function bindReady(){
|
|||
// Use the handy event callback
|
||||
document.addEventListener( "DOMContentLoaded", jQuery.ready, false );
|
||||
|
||||
// If IE is used and is not in a frame
|
||||
// Continually check to see if the document is ready
|
||||
if ( jQuery.browser.msie && window == top ) (function(){
|
||||
// If IE event model is used
|
||||
if ( document.attachEvent )
|
||||
// ensure firing before onload,
|
||||
// maybe late but safe also for iframes
|
||||
document.attachEvent("onreadystatechange", function(e) {
|
||||
if ( document.readyState == "complete" ) {
|
||||
document.detachEvent("onreadystatechange", arguments.callee );
|
||||
jQuery.ready();
|
||||
}
|
||||
});
|
||||
|
||||
// If IE and not an iframe
|
||||
if ( document.documentElement.doScroll && !window.frameElement )
|
||||
// continually check to see if the document is ready
|
||||
(function(){
|
||||
if (jQuery.isReady) return;
|
||||
try {
|
||||
// If IE is used, use the trick by Diego Perini
|
||||
|
|
Loading…
Reference in a new issue