2006-07-10 05:20:56 +02:00
|
|
|
jQuery.fn.extend({
|
2006-04-08 08:28:40 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// We're overriding the old toggle function, so
|
|
|
|
// remember it for later
|
|
|
|
_toggle: jQuery.fn.toggle,
|
2006-06-19 02:12:14 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
/**
|
|
|
|
* Toggle between two function calls every other click.
|
|
|
|
*/
|
|
|
|
toggle: function(a,b) {
|
|
|
|
// If two functions are passed in, we're
|
|
|
|
// toggling on a click
|
|
|
|
return a && b ? this.click(function(e){
|
|
|
|
// Figure out which function to execute
|
|
|
|
this.last = this.last == a ? b : a;
|
|
|
|
|
|
|
|
// Make sure that clicks stop
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
// and execute the function
|
|
|
|
return this.last.apply( this, [e] ) || false;
|
|
|
|
}) :
|
2006-06-19 02:12:14 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Otherwise, execute the old toggle function
|
|
|
|
this._toggle();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle between two function calls on mouse over/out.
|
|
|
|
*/
|
|
|
|
hover: function(f,g) {
|
2006-06-19 02:12:14 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// A private function for haandling mouse 'hovering'
|
|
|
|
function handleHover(e) {
|
|
|
|
// Check if mouse(over|out) are still within the same parent element
|
|
|
|
var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
|
2006-06-19 02:12:14 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Traverse up the tree
|
|
|
|
while ( p && p != this ) p = p.parentNode;
|
|
|
|
|
|
|
|
// If we actually just moused on to a sub-element, ignore it
|
|
|
|
if ( p == this ) return false;
|
|
|
|
|
|
|
|
// Execute the right function
|
|
|
|
return (e.type == "mouseover" ? f : g).apply(this, [e]);
|
|
|
|
}
|
2006-06-19 02:12:14 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Bind the function to the two event listeners
|
|
|
|
return this.mouseover(handleHover).mouseout(handleHover);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bind a function to fire when the DOM is ready.
|
|
|
|
*/
|
|
|
|
ready: function(f) {
|
|
|
|
// If the DOM is already ready
|
|
|
|
if ( jQuery.isReady )
|
|
|
|
// Execute the function immediately
|
|
|
|
f.apply( document );
|
|
|
|
|
|
|
|
// Otherwise, remember the function for later
|
|
|
|
else {
|
|
|
|
// Add the function to the wait list
|
|
|
|
jQuery.readyList.push( f );
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2006-06-14 22:05:06 +02:00
|
|
|
}
|
2006-07-10 05:20:56 +02:00
|
|
|
});
|
2006-06-14 22:05:06 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
jQuery.extend({
|
|
|
|
/*
|
|
|
|
* All the code that makes DOM Ready work nicely.
|
|
|
|
*/
|
|
|
|
isReady: false,
|
|
|
|
readyList: [],
|
|
|
|
|
|
|
|
// Handle when the DOM is ready
|
|
|
|
ready: function() {
|
|
|
|
// Make sure that the DOM is not already loaded
|
|
|
|
if ( !jQuery.isReady ) {
|
|
|
|
// Remember that the DOM is ready
|
|
|
|
jQuery.isReady = true;
|
|
|
|
|
|
|
|
// If there are functions bound, to execute
|
|
|
|
if ( jQuery.readyList ) {
|
|
|
|
// Execute all of them
|
|
|
|
for ( var i = 0; i < jQuery.readyList.length; i++ )
|
|
|
|
jQuery.readyList[i].apply( document );
|
|
|
|
|
|
|
|
// Reset the list of functions
|
|
|
|
jQuery.readyList = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2006-03-22 04:33:07 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
new function(){
|
2006-06-19 02:12:14 +02:00
|
|
|
/*
|
|
|
|
* Bind a number of event-handling functions, dynamically
|
|
|
|
*/
|
2006-07-10 05:20:56 +02:00
|
|
|
var e = ("blur,focus,load,resize,scroll,unload,click,dblclick," +
|
|
|
|
"mousedown,mouseup,mousemove,mouseover,mouseout,change,reset,select," +
|
|
|
|
"submit,keydown,keypress,keyup,error").split(",");
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
// Go through all the event names, but make sure that
|
|
|
|
// it is enclosed properly
|
2006-07-10 05:20:56 +02:00
|
|
|
for ( var i = 0; i < e.length; i++ ) new function(){
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
var o = e[i];
|
|
|
|
|
|
|
|
// Handle event binding
|
2006-07-10 05:20:56 +02:00
|
|
|
jQuery.fn[o] = function(f){
|
|
|
|
return f ? this.bind(o, f) : this.trigger(o);
|
|
|
|
};
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
// Handle event unbinding
|
2006-07-10 05:20:56 +02:00
|
|
|
jQuery.fn["un"+o] = function(f){ return this.unbind(o, f); };
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
// Finally, handle events that only fire once
|
2006-07-10 05:20:56 +02:00
|
|
|
jQuery.fn["one"+o] = function(f){
|
2006-06-19 02:12:14 +02:00
|
|
|
// Attach the event listener
|
2006-07-16 02:52:30 +02:00
|
|
|
return this.each(function(){
|
|
|
|
|
|
|
|
var count = 0;
|
|
|
|
|
|
|
|
// Add the event
|
|
|
|
jQuery.event.add( this, o, function(e){
|
|
|
|
// If this function has already been executed, stop
|
|
|
|
if ( count++ ) return;
|
2006-06-19 02:12:14 +02:00
|
|
|
|
2006-07-16 02:52:30 +02:00
|
|
|
// And execute the bound function
|
|
|
|
return f.apply(this, [e]);
|
|
|
|
});
|
2006-06-19 02:12:14 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
}
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
// If Mozilla is used
|
2006-07-10 05:20:56 +02:00
|
|
|
if ( jQuery.browser.mozilla || jQuery.browser.opera ) {
|
2006-06-19 02:12:14 +02:00
|
|
|
// Use the handy event callback
|
2006-07-05 03:48:00 +02:00
|
|
|
document.addEventListener( "DOMContentLoaded", jQuery.ready, false );
|
2006-06-19 02:12:14 +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-07-10 05:20:56 +02:00
|
|
|
} else if ( jQuery.browser.msie ) {
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
// Only works if you document.write() it
|
2006-06-22 07:23:38 +02:00
|
|
|
document.write("<scr" + "ipt id=__ie_init defer=true " +
|
2006-07-17 04:05:04 +02:00
|
|
|
"src=//:><\/script>");
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
// Use the defer script hack
|
2006-06-22 07:23:38 +02:00
|
|
|
var script = document.getElementById("__ie_init");
|
2006-06-19 02:12:14 +02:00
|
|
|
script.onreadystatechange = function() {
|
2006-06-22 07:23:38 +02:00
|
|
|
if ( this.readyState == "complete" )
|
2006-06-22 22:14:41 +02:00
|
|
|
jQuery.ready();
|
2006-06-19 02:12:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Clear from memory
|
|
|
|
script = null;
|
|
|
|
|
|
|
|
// If Safari is used
|
2006-07-10 05:20:56 +02:00
|
|
|
} else if ( jQuery.browser.safari ) {
|
2006-06-19 02:12:14 +02:00
|
|
|
// Continually check to see if the document.readyState is valid
|
2006-06-22 22:14:41 +02:00
|
|
|
jQuery.safariTimer = setInterval(function(){
|
2006-06-19 02:12:14 +02:00
|
|
|
// loaded and complete are both valid states
|
|
|
|
if ( document.readyState == "loaded" ||
|
|
|
|
document.readyState == "complete" ) {
|
|
|
|
|
|
|
|
// If either one are found, remove the timer
|
2006-06-22 22:14:41 +02:00
|
|
|
clearInterval( jQuery.safariTimer );
|
|
|
|
jQuery.safariTimer = null;
|
2006-06-19 02:12:14 +02:00
|
|
|
|
|
|
|
// and execute any waiting functions
|
2006-06-22 22:14:41 +02:00
|
|
|
jQuery.ready();
|
2006-06-19 02:12:14 +02:00
|
|
|
}
|
|
|
|
}, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
// A fallback to window.onload, that will always work
|
2006-06-22 22:14:41 +02:00
|
|
|
jQuery.event.add( window, "load", jQuery.ready );
|
2006-06-19 02:12:14 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
}
|