X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=event%2Fevent.js;h=b705dbadc269f73b7631c0cb9f8af315ec215fa3;hb=598fcca346535040416d01aa6d2da53f8b1e8422;hp=ebb78973f8f122d4e83f902d8c63942c28d11b13;hpb=f0034d64e3890553f214db0708b9a831476ea46a;p=jquery.git diff --git a/event/event.js b/event/event.js index ebb7897..b705dba 100644 --- a/event/event.js +++ b/event/event.js @@ -1,69 +1,117 @@ -var e = ["blur","focus","contextmenu","load","resize","scroll","unload", - "click","dblclick","mousedown","mouseup","mouseenter","mouseleave", - "mousemove","mouseover","mouseout","change","reset","select","submit", - "keydown","keypress","keyup","abort","error","ready"]; - -for ( var i = 0; i < e.length; i++ ) { - (function(){ - var o = e[i]; - $.fn[o] = function(f){ return this.bind(o, f); }; - $.fn["un"+o] = function(f){ return this.unbind(o, f); }; - $.fn["do"+o] = function(){ return this.trigger(o); }; - $.fn["one"+o] = function(f){ return this.bind(o, function(e){ - if ( this[o+f] != null ) return true; - this[o+f]++; - return $.apply(this,f,[e]); - }); }; +(function(){ + var e = ["blur","focus","contextmenu","load","resize","scroll","unload", + "click","dblclick","mousedown","mouseup","mouseenter","mouseleave", + "mousemove","mouseover","mouseout","change","reset","select","submit", + "keydown","keypress","keyup","abort","error","ready"]; + + for ( var i = 0; i < e.length; i++ ) { + (function(){ + var o = e[i]; + $.fn[o] = function(f){ return this.bind(o, f); }; + $.fn["un"+o] = function(f){ return this.unbind(o, f); }; + $.fn["do"+o] = function(){ return this.trigger(o); }; + $.fn["one"+o] = function(f){ return this.bind(o, function(e){ + if ( this[o+f] !== null ) { return true; } + this[o+f]++; + return $.apply(this,f,[e]); + }); }; - // Deprecated - //$.fn["on"+o] = function(f){ return this.bind(o, f); }; - })(); -} + // Deprecated + //$.fn["on"+o] = function(f){ return this.bind(o, f); }; + })(); + } +})(); $.fn.hover = function(f,g) { // Check if mouse(over|out) are still within the same parent element return this.each(function(){ var obj = this; - addEvent(this, "mouseover", function(e) { - var p = ( e.fromElement != null ? e.fromElement : e.relatedTarget ); - while ( p && p != obj ) p = p.parentNode; - if ( p == obj ) return false; + $.event.add(this, "mouseover", function(e) { + var p = ( e.fromElement !== null ? e.fromElement : e.relatedTarget ); + while ( p && p != obj ) { p = p.parentNode; } + if ( p == obj ) { return false; } return $.apply(obj,f,[e]); }); - addEvent(this, "mouseout", function(e) { - var p = ( e.toElement != null ? e.toElement : e.relatedTarget ); - while ( p && p != obj ) p = p.parentNode; - if ( p == obj ) return false; + $.event.add(this, "mouseout", function(e) { + var p = ( e.toElement !== null ? e.toElement : e.relatedTarget ); + while ( p && p != obj ) { p = p.parentNode; } + if ( p == obj ) { return false; } return $.apply(obj,g,[e]); }); }); }; -// Deprecated -$.fn.onhover = $.fn.hover; +$.$$isReady = false; +$.$$ready = []; -$.fn.ready = function(f) { - return this.each(function(){ - if ( this.$$timer ) { - this.$$ready.push( f ); - } else { - var obj = this; - this.$$ready = [ f ]; - this.$$timer = setInterval( function(){ - if ( obj && obj.getElementsByTagName && obj.getElementById && obj.body ) { - clearInterval( obj.$$timer ); - obj.$$timer = null; - for ( var i = 0; i < obj.$$ready.length; i++ ) - $.apply( obj, obj.$$ready[i] ); - obj.$$ready = null; - } - }, 13 ); +// Handle when the DOM is ready +$.ready = function() { + $.$$isReady = true; + if ( $.$$ready ) { + for ( var i = 0; i < $.$$ready.length; i++ ) { + $.apply( document, $.$$ready[i] ); } - }); + $.$$ready = []; + } }; -// Deprecated -$.fn.onready = $.fn.ready; +// If Mozilla is used +if ( $.browser == "mozilla" ) { + // 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('<\/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 or Opera is used +} else { + $.$$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) { + if ( $.$$isReady ) { + $.apply( document, f ); + } else { + if ( ! $.$$ready ) { + $.$$ready = []; + } + + $.$$ready.push( f ); + } + + return this; +}; $.fn.toggle = function(a,b) { return a && b ? this.click(function(e){