Fixed the double-firing IE bug. (Ticket #13)
[jquery.git] / event / event.js
index feec9ee..fcd590a 100644 (file)
@@ -41,44 +41,79 @@ $.fn.hover = function(f,g) {
        });
 };
 
-// Deprecated
-$.fn.onhover = $.fn.hover;
+$.$$isReady = false;
+$.$$ready = [];
 
+// Handle when the DOM is ready
 $.ready = function() {
-       if ( $.$$timer ) {
-               clearInterval( $.$$timer );
-               $.$$timer = null;
-               for ( var i = 0; i < $.$$ready.length; i++ ) {
-                       $.apply( document, $.$$ready[i] );
+       if ( !$.$$isReady ) {
+               $.$$isReady = true;
+               if ( $.$$ready ) {
+                       for ( var i = 0; i < $.$$ready.length; i++ ) {
+                               $.apply( document, $.$$ready[i] );
+                       }
+                       $.$$ready = [];
                }
-               $.$$ready = null;
        }
 };
 
-if ( document.addEventListener ) {
+// If Mozilla is used
+if ( $.browser == "mozilla" || $.browser == "opera" ) {
+       // Use the handy event callback
        document.addEventListener( "DOMContentLoaded", $.ready, null );
+
+// If IE is used, use the excellent hack by Matthias Miller
+// http://www.outofhanwell.com/blog/index.php?title=the_window_onload_problem_revisited
+} else if ( $.browser == "msie" ) {
+
+       // Only works if you document.write() it
+       document.write('<scr' + 'ipt id=__ie_init defer=true ' + 
+               'src=javascript:void(0)><\/script>');
+
+       // Use the defer script hack
+       var script = document.getElementById('__ie_init');
+       script.onreadystatechange = function() {
+               if ( this.readyState == 'complete' ) {
+                       $.ready();
+               }
+       };
+
+       // Clear from memory
+       script = null;
+
+// If Safari  is used
+} else if ( $.browser == "safari" ) {
+       $.$$timer = setInterval(function(){
+       if ( document.readyState == "loaded" || 
+                       document.readyState == "complete" ) {
+
+                       clearInterval( $.$$timer );
+                       $.$$timer = null;
+
+                       $.ready();
+               }
+       }, 10);
 }
 
+// A fallback, that will always work, just in case
 $.event.add( window, "load", $.ready );
 
+/**
+ * Bind a function to fire when the DOM is ready.
+ */
 $.fn.ready = function(f) {
-       return this.each(function(){
-               if ( $.$$timer ) {
-                       $.$$ready.push( f );
-               } else {
-                       var o = this;
-                       $.$$ready = [ f ];
-                       $.$$timer = setInterval( function(){
-                               if ( o && o.getElementsByTagName && o.getElementById && o.body ) {
-                                       $.ready();
-                               }
-                       }, 10 );
+       if ( $.$$isReady ) {
+               $.apply( document, f );
+       } else {
+               if ( ! $.$$ready ) {
+                       $.$$ready = [];
                }
-       });
-};
 
-// Deprecated
-$.fn.onready = $.fn.ready;
+               $.$$ready.push( f );
+       }
+
+       return this;
+};
 
 $.fn.toggle = function(a,b) {
        return a && b ? this.click(function(e){