2006-05-17 04:42:03 +02:00
|
|
|
(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"];
|
2006-04-08 08:28:40 +02:00
|
|
|
|
2006-05-17 04:42:03 +02:00
|
|
|
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]);
|
|
|
|
}); };
|
2006-03-22 04:33:07 +01:00
|
|
|
|
2006-05-17 04:42:03 +02:00
|
|
|
// Deprecated
|
|
|
|
//$.fn["on"+o] = function(f){ return this.bind(o, f); };
|
|
|
|
})();
|
|
|
|
}
|
|
|
|
})();
|
2006-03-22 04:33:07 +01:00
|
|
|
|
|
|
|
$.fn.hover = function(f,g) {
|
|
|
|
// Check if mouse(over|out) are still within the same parent element
|
|
|
|
return this.each(function(){
|
|
|
|
var obj = this;
|
2006-05-17 04:42:03 +02:00
|
|
|
$.event.add(this, "mouseover", function(e) {
|
2006-05-17 00:15:05 +02:00
|
|
|
var p = ( e.fromElement !== null ? e.fromElement : e.relatedTarget );
|
|
|
|
while ( p && p != obj ) { p = p.parentNode; }
|
|
|
|
if ( p == obj ) { return false; }
|
2006-03-22 04:33:07 +01:00
|
|
|
return $.apply(obj,f,[e]);
|
|
|
|
});
|
2006-05-17 04:42:03 +02:00
|
|
|
$.event.add(this, "mouseout", function(e) {
|
2006-05-17 00:15:05 +02:00
|
|
|
var p = ( e.toElement !== null ? e.toElement : e.relatedTarget );
|
|
|
|
while ( p && p != obj ) { p = p.parentNode; }
|
|
|
|
if ( p == obj ) { return false; }
|
2006-03-22 04:33:07 +01:00
|
|
|
return $.apply(obj,g,[e]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2006-06-14 22:05:06 +02:00
|
|
|
$.$$isReady = false;
|
|
|
|
$.$$ready = [];
|
|
|
|
|
2006-06-11 20:59:45 +02:00
|
|
|
// Handle when the DOM is ready
|
2006-06-14 22:05:06 +02:00
|
|
|
$.ready = function() {
|
|
|
|
$.$$isReady = true;
|
2006-06-13 06:12:06 +02:00
|
|
|
if ( $.$$ready ) {
|
2006-05-17 00:15:05 +02:00
|
|
|
for ( var i = 0; i < $.$$ready.length; i++ ) {
|
|
|
|
$.apply( document, $.$$ready[i] );
|
|
|
|
}
|
2006-06-13 06:12:06 +02:00
|
|
|
$.$$ready = [];
|
2006-05-17 00:15:05 +02:00
|
|
|
}
|
2006-04-08 08:28:40 +02:00
|
|
|
};
|
|
|
|
|
2006-06-11 20:59:45 +02:00
|
|
|
// If Mozilla is used
|
|
|
|
if ( $.browser == "mozilla" ) {
|
|
|
|
// Use the handy event callback
|
2006-04-08 08:28:40 +02:00
|
|
|
document.addEventListener( "DOMContentLoaded", $.ready, null );
|
2006-06-11 20:59:45 +02:00
|
|
|
|
2006-06-14 22:05:06 +02:00
|
|
|
// If IE is used, use the excellent hack by Matthias Miller
|
|
|
|
// http://www.outofhanwell.com/blog/index.php?title=the_window_onload_problem_revisited
|
2006-06-11 20:59:45 +02:00
|
|
|
} else if ( $.browser == "msie" ) {
|
2006-06-14 22:05:06 +02:00
|
|
|
|
|
|
|
// Only works if you document.write() it
|
2006-06-16 02:19:47 +02:00
|
|
|
document.write('<scr' + 'ipt id=__ie_init defer=true ' +
|
|
|
|
'src=javascript:void(0)><\/script>');
|
2006-06-14 22:05:06 +02:00
|
|
|
|
2006-06-11 20:59:45 +02:00
|
|
|
// Use the defer script hack
|
2006-06-14 22:05:06 +02:00
|
|
|
var script = document.getElementById('__ie_init');
|
2006-06-13 06:12:06 +02:00
|
|
|
script.onreadystatechange = function() {
|
2006-06-14 22:05:06 +02:00
|
|
|
if ( this.readyState == 'complete' ) {
|
2006-06-13 06:12:06 +02:00
|
|
|
$.ready();
|
|
|
|
}
|
|
|
|
};
|
2006-06-14 22:05:06 +02:00
|
|
|
|
|
|
|
// Clear from memory
|
2006-06-11 20:59:45 +02:00
|
|
|
script = null;
|
|
|
|
|
2006-06-13 06:12:06 +02:00
|
|
|
// If Safari or Opera is used
|
2006-06-11 20:59:45 +02:00
|
|
|
} else {
|
2006-06-13 06:12:06 +02:00
|
|
|
$.$$timer = setInterval(function(){
|
|
|
|
if ( document.readyState == "loaded" ||
|
|
|
|
document.readyState == "complete" ) {
|
|
|
|
|
|
|
|
clearInterval( $.$$timer );
|
|
|
|
$.$$timer = null;
|
|
|
|
|
|
|
|
$.ready();
|
|
|
|
}
|
|
|
|
}, 10);
|
2006-05-17 00:15:05 +02:00
|
|
|
}
|
2006-04-08 08:28:40 +02:00
|
|
|
|
2006-06-11 20:59:45 +02:00
|
|
|
// A fallback, that will always work, just in case
|
2006-06-14 22:05:06 +02:00
|
|
|
$.event.add( window, "load", $.ready );
|
2006-04-08 08:28:40 +02:00
|
|
|
|
2006-06-11 20:59:45 +02:00
|
|
|
/**
|
|
|
|
* Bind a function to fire when the DOM is ready.
|
|
|
|
*/
|
2006-03-22 04:33:07 +01:00
|
|
|
$.fn.ready = function(f) {
|
2006-06-14 22:05:06 +02:00
|
|
|
if ( $.$$isReady ) {
|
|
|
|
$.apply( document, f );
|
|
|
|
} else {
|
2006-06-13 06:12:06 +02:00
|
|
|
if ( ! $.$$ready ) {
|
|
|
|
$.$$ready = [];
|
2006-03-22 04:33:07 +01:00
|
|
|
}
|
2006-06-13 06:12:06 +02:00
|
|
|
|
|
|
|
$.$$ready.push( f );
|
2006-06-14 22:05:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2006-03-22 04:33:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
$.fn.toggle = function(a,b) {
|
|
|
|
return a && b ? this.click(function(e){
|
|
|
|
this.$$last = this.$$last == a ? b : a;
|
|
|
|
e.preventDefault();
|
|
|
|
return $.apply( this, this.$$last, [e] ) || false;
|
|
|
|
}) : this._toggle();
|
2006-05-17 00:15:05 +02:00
|
|
|
};
|