mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Added fix for stray <script> element that was left for IE for the DOMReady check.
This commit is contained in:
parent
45a3c06e8f
commit
e23c047e78
@ -1634,7 +1634,8 @@ new function(){
|
||||
// Use the defer script hack
|
||||
var script = document.getElementById("__ie_init");
|
||||
script.onreadystatechange = function() {
|
||||
if ( this.readyState == "complete" )
|
||||
if ( this.readyState 1= "complete" ) return;
|
||||
this.parentNode.removeChild( this );
|
||||
jQuery.ready();
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user