Complete overhaul of the Ajax test suite, it's now passing in all browsers. In order...
[jquery.git] / src / event / event.js
1 /*
2  * A number of helper functions used for managing events.
3  * Many of the ideas behind this code orignated from 
4  * Dean Edwards' addEvent library.
5  */
6 jQuery.event = {
7
8         // Bind an event to an element
9         // Original by Dean Edwards
10         add: function(element, type, handler, data) {
11                 // For whatever reason, IE has trouble passing the window object
12                 // around, causing it to be cloned in the process
13                 if ( jQuery.browser.msie && element.setInterval != undefined )
14                         element = window;
15                 
16                 // Make sure that the function being executed has a unique ID
17                 if ( !handler.guid )
18                         handler.guid = this.guid++;
19                         
20                 // if data is passed, bind to handler 
21                 if( data != undefined ) { 
22                 // Create temporary function pointer to original handler 
23                         var fn = handler; 
24
25                         // Create unique handler function, wrapped around original handler 
26                         handler = function() { 
27                                 // Pass arguments and context to original handler 
28                                 return fn.apply(this, arguments); 
29                         };
30
31                         // Store data in unique handler 
32                         handler.data = data;
33
34                         // Set the guid of unique handler to the same of original handler, so it can be removed 
35                         handler.guid = fn.guid;
36                 }
37
38                 // Init the element's event structure
39                 if (!element.$events)
40                         element.$events = {};
41                 
42                 if (!element.$handle)
43                         element.$handle = function() {
44                                 // returned undefined or false
45                                 var val;
46
47                                 // Handle the second event of a trigger and when
48                                 // an event is called after a page has unloaded
49                                 if ( typeof jQuery == "undefined" || jQuery.event.triggered )
50                                   return val;
51                                 
52                                 val = jQuery.event.handle.apply(element, arguments);
53                                 
54                                 return val;
55                         };
56
57                 // Get the current list of functions bound to this event
58                 var handlers = element.$events[type];
59
60                 // Init the event handler queue
61                 if (!handlers) {
62                         handlers = element.$events[type] = {};  
63                         
64                         // And bind the global event handler to the element
65                         if (element.addEventListener)
66                                 element.addEventListener(type, element.$handle, false);
67                         else
68                                 element.attachEvent("on" + type, element.$handle);
69                 }
70
71                 // Add the function to the element's handler list
72                 handlers[handler.guid] = handler;
73
74                 // Keep track of which events have been used, for global triggering
75                 this.global[type] = true;
76         },
77
78         guid: 1,
79         global: {},
80
81         // Detach an event or set of events from an element
82         remove: function(element, type, handler) {
83                 var events = element.$events, ret, index;
84
85                 if ( events ) {
86                         // type is actually an event object here
87                         if ( type && type.type ) {
88                                 handler = type.handler;
89                                 type = type.type;
90                         }
91                         
92                         if ( !type ) {
93                                 for ( type in events )
94                                         this.remove( element, type );
95
96                         } else if ( events[type] ) {
97                                 // remove the given handler for the given type
98                                 if ( handler )
99                                         delete events[type][handler.guid];
100                                 
101                                 // remove all handlers for the given type
102                                 else
103                                         for ( handler in element.$events[type] )
104                                                 delete events[type][handler];
105
106                                 // remove generic event handler if no more handlers exist
107                                 for ( ret in events[type] ) break;
108                                 if ( !ret ) {
109                                         if (element.removeEventListener)
110                                                 element.removeEventListener(type, element.$handle, false);
111                                         else
112                                                 element.detachEvent("on" + type, element.$handle);
113                                         ret = null;
114                                         delete events[type];
115                                 }
116                         }
117
118                         // Remove the expando if it's no longer used
119                         for ( ret in events ) break;
120                         if ( !ret )
121                                 element.$handle = element.$events = null;
122                 }
123         },
124
125         trigger: function(type, data, element) {
126                 // Clone the incoming data, if any
127                 data = jQuery.makeArray(data || []);
128
129                 // Handle a global trigger
130                 if ( !element ) {
131                         // Only trigger if we've ever bound an event for it
132                         if ( this.global[type] )
133                                 jQuery("*").trigger(type, data);
134
135                 // Handle triggering a single element
136                 } else {
137                         var val, ret, fn = jQuery.isFunction( element[ type ] || null );
138                         
139                         // Pass along a fake event
140                         data.unshift( this.fix({ type: type, target: element }) );
141
142                         // Trigger the event
143                         if ( jQuery.isFunction( element.$handle ) )
144                                 val = element.$handle.apply( element, data );
145                         if ( !fn && element["on"+type] && element["on"+type].apply( element, data ) === false )
146                                 val = false;
147
148                         if ( fn && val !== false && !(jQuery.nodeName(element, 'a') && type == "click") ) {
149                                 this.triggered = true;
150                                 element[ type ]();
151                         }
152
153                         this.triggered = false;
154                 }
155         },
156
157         handle: function(event) {
158                 // returned undefined or false
159                 var val;
160
161                 // Empty object is for triggered events with no data
162                 event = jQuery.event.fix( event || window.event || {} ); 
163
164                 var c = this.$events && this.$events[event.type], args = [].slice.call( arguments, 1 );
165                 args.unshift( event );
166
167                 for ( var j in c ) {
168                         // Pass in a reference to the handler function itself
169                         // So that we can later remove it
170                         args[0].handler = c[j];
171                         args[0].data = c[j].data;
172
173                         if ( c[j].apply( this, args ) === false ) {
174                                 event.preventDefault();
175                                 event.stopPropagation();
176                                 val = false;
177                         }
178                 }
179
180                 // Clean up added properties in IE to prevent memory leak
181                 if (jQuery.browser.msie)
182                         event.target = event.preventDefault = event.stopPropagation =
183                                 event.handler = event.data = null;
184
185                 return val;
186         },
187
188         fix: function(event) {
189                 // store a copy of the original event object 
190                 // and clone to set read-only properties
191                 var originalEvent = event;
192                 event = jQuery.extend({}, originalEvent);
193                 
194                 // add preventDefault and stopPropagation since 
195                 // they will not work on the clone
196                 event.preventDefault = function() {
197                         // if preventDefault exists run it on the original event
198                         if (originalEvent.preventDefault)
199                                 return originalEvent.preventDefault();
200                         // otherwise set the returnValue property of the original event to false (IE)
201                         originalEvent.returnValue = false;
202                 };
203                 event.stopPropagation = function() {
204                         // if stopPropagation exists run it on the original event
205                         if (originalEvent.stopPropagation)
206                                 return originalEvent.stopPropagation();
207                         // otherwise set the cancelBubble property of the original event to true (IE)
208                         originalEvent.cancelBubble = true;
209                 };
210                 
211                 // Fix target property, if necessary
212                 if ( !event.target && event.srcElement )
213                         event.target = event.srcElement;
214                                 
215                 // check if target is a textnode (safari)
216                 if (jQuery.browser.safari && event.target.nodeType == 3)
217                         event.target = originalEvent.target.parentNode;
218
219                 // Add relatedTarget, if necessary
220                 if ( !event.relatedTarget && event.fromElement )
221                         event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;
222
223                 // Calculate pageX/Y if missing and clientX/Y available
224                 if ( event.pageX == null && event.clientX != null ) {
225                         var e = document.documentElement, b = document.body;
226                         event.pageX = event.clientX + (e && e.scrollLeft || b.scrollLeft || 0);
227                         event.pageY = event.clientY + (e && e.scrollTop || b.scrollTop || 0);
228                 }
229                         
230                 // Add which for key events
231                 if ( !event.which && (event.charCode || event.keyCode) )
232                         event.which = event.charCode || event.keyCode;
233                 
234                 // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
235                 if ( !event.metaKey && event.ctrlKey )
236                         event.metaKey = event.ctrlKey;
237
238                 // Add which for click: 1 == left; 2 == middle; 3 == right
239                 // Note: button is not normalized, so don't use it
240                 if ( !event.which && event.button )
241                         event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));
242                         
243                 return event;
244         }
245 };
246
247 jQuery.fn.extend({
248
249         /**
250          * Binds a handler to a particular event (like click) for each matched element.
251          * The event handler is passed an event object that you can use to prevent
252          * default behaviour. To stop both default action and event bubbling, your handler
253          * has to return false.
254          *
255          * In most cases, you can define your event handlers as anonymous functions
256          * (see first example). In cases where that is not possible, you can pass additional
257          * data as the second parameter (and the handler function as the third), see 
258          * second example.
259          *
260          * Calling bind with an event type of "unload" will automatically
261          * use the one method instead of bind to prevent memory leaks.
262          *
263          * @example $("p").bind("click", function(){
264          *   alert( $(this).text() );
265          * });
266          * @before <p>Hello</p>
267          * @result alert("Hello")
268          *
269          * @example function handler(event) {
270          *   alert(event.data.foo);
271          * }
272          * $("p").bind("click", {foo: "bar"}, handler)
273          * @result alert("bar")
274          * @desc Pass some additional data to the event handler.
275          *
276          * @example $("form").bind("submit", function() { return false; })
277          * @desc Cancel a default action and prevent it from bubbling by returning false
278          * from your function.
279          *
280          * @example $("form").bind("submit", function(event){
281          *   event.preventDefault();
282          * });
283          * @desc Cancel only the default action by using the preventDefault method.
284          *
285          *
286          * @example $("form").bind("submit", function(event){
287          *   event.stopPropagation();
288          * });
289          * @desc Stop only an event from bubbling by using the stopPropagation method.
290          *
291          * @name bind
292          * @type jQuery
293          * @param String type An event type
294          * @param Object data (optional) Additional data passed to the event handler as event.data
295          * @param Function fn A function to bind to the event on each of the set of matched elements
296          * @cat Events
297          */
298         bind: function( type, data, fn ) {
299                 return type == "unload" ? this.one(type, data, fn) : this.each(function(){
300                         jQuery.event.add( this, type, fn || data, fn && data );
301                 });
302         },
303         
304         /**
305          * Binds a handler to a particular event (like click) for each matched element.
306          * The handler is executed only once for each element. Otherwise, the same rules
307          * as described in bind() apply.
308          * The event handler is passed an event object that you can use to prevent
309          * default behaviour. To stop both default action and event bubbling, your handler
310          * has to return false.
311          *
312          * In most cases, you can define your event handlers as anonymous functions
313          * (see first example). In cases where that is not possible, you can pass additional
314          * data as the second paramter (and the handler function as the third), see 
315          * second example.
316          *
317          * @example $("p").one("click", function(){
318          *   alert( $(this).text() );
319          * });
320          * @before <p>Hello</p>
321          * @result alert("Hello")
322          *
323          * @name one
324          * @type jQuery
325          * @param String type An event type
326          * @param Object data (optional) Additional data passed to the event handler as event.data
327          * @param Function fn A function to bind to the event on each of the set of matched elements
328          * @cat Events
329          */
330         one: function( type, data, fn ) {
331                 return this.each(function(){
332                         jQuery.event.add( this, type, function(event) {
333                                 jQuery(this).unbind(event);
334                                 return (fn || data).apply( this, arguments);
335                         }, fn && data);
336                 });
337         },
338
339         /**
340          * The opposite of bind, removes a bound event from each of the matched
341          * elements.
342          *
343          * Without any arguments, all bound events are removed.
344          *
345          * If the type is provided, all bound events of that type are removed.
346          *
347          * If the function that was passed to bind is provided as the second argument,
348          * only that specific event handler is removed.
349          *
350          * @example $("p").unbind()
351          * @before <p onclick="alert('Hello');">Hello</p>
352          * @result [ <p>Hello</p> ]
353          *
354          * @example $("p").unbind( "click" )
355          * @before <p onclick="alert('Hello');">Hello</p>
356          * @result [ <p>Hello</p> ]
357          *
358          * @example $("p").unbind( "click", function() { alert("Hello"); } )
359          * @before <p onclick="alert('Hello');">Hello</p>
360          * @result [ <p>Hello</p> ]
361          *
362          * @name unbind
363          * @type jQuery
364          * @param String type (optional) An event type
365          * @param Function fn (optional) A function to unbind from the event on each of the set of matched elements
366          * @cat Events
367          */
368         unbind: function( type, fn ) {
369                 return this.each(function(){
370                         jQuery.event.remove( this, type, fn );
371                 });
372         },
373
374         /**
375          * Trigger a type of event on every matched element. This will also cause
376          * the default action of the browser with the same name (if one exists)
377          * to be executed. For example, passing 'submit' to the trigger()
378          * function will also cause the browser to submit the form. This
379          * default action can be prevented by returning false from one of
380          * the functions bound to the event.
381          *
382          * You can also trigger custom events registered with bind.
383          *
384          * @example $("p").trigger("click")
385          * @before <p click="alert('hello')">Hello</p>
386          * @result alert('hello')
387          *
388          * @example $("p").click(function(event, a, b) {
389          *   // when a normal click fires, a and b are undefined
390          *   // for a trigger like below a refers too "foo" and b refers to "bar"
391          * }).trigger("click", ["foo", "bar"]);
392          * @desc Example of how to pass arbitrary data to an event
393          * 
394          * @example $("p").bind("myEvent",function(event,message1,message2) {
395          *      alert(message1 + ' ' + message2);
396          * });
397          * $("p").trigger("myEvent",["Hello","World"]);
398          * @result alert('Hello World') // One for each paragraph
399          *
400          * @name trigger
401          * @type jQuery
402          * @param String type An event type to trigger.
403          * @param Array data (optional) Additional data to pass as arguments (after the event object) to the event handler
404          * @cat Events
405          */
406         trigger: function( type, data ) {
407                 return this.each(function(){
408                         jQuery.event.trigger( type, data, this );
409                 });
410         },
411
412         /**
413          * Toggle between two function calls every other click.
414          * Whenever a matched element is clicked, the first specified function 
415          * is fired, when clicked again, the second is fired. All subsequent 
416          * clicks continue to rotate through the two functions.
417          *
418          * Use unbind("click") to remove.
419          *
420          * @example $("p").toggle(function(){
421          *   $(this).addClass("selected");
422          * },function(){
423          *   $(this).removeClass("selected");
424          * });
425          * 
426          * @name toggle
427          * @type jQuery
428          * @param Function even The function to execute on every even click.
429          * @param Function odd The function to execute on every odd click.
430          * @cat Events
431          */
432         toggle: function() {
433                 // Save reference to arguments for access in closure
434                 var a = arguments;
435
436                 return this.click(function(e) {
437                         // Figure out which function to execute
438                         this.lastToggle = 0 == this.lastToggle ? 1 : 0;
439                         
440                         // Make sure that clicks stop
441                         e.preventDefault();
442                         
443                         // and execute the function
444                         return a[this.lastToggle].apply( this, [e] ) || false;
445                 });
446         },
447         
448         /**
449          * A method for simulating hovering (moving the mouse on, and off,
450          * an object). This is a custom method which provides an 'in' to a 
451          * frequent task.
452          *
453          * Whenever the mouse cursor is moved over a matched 
454          * element, the first specified function is fired. Whenever the mouse 
455          * moves off of the element, the second specified function fires. 
456          * Additionally, checks are in place to see if the mouse is still within 
457          * the specified element itself (for example, an image inside of a div), 
458          * and if it is, it will continue to 'hover', and not move out 
459          * (a common error in using a mouseout event handler).
460          *
461          * @example $("p").hover(function(){
462          *   $(this).addClass("hover");
463          * },function(){
464          *   $(this).removeClass("hover");
465          * });
466          *
467          * @name hover
468          * @type jQuery
469          * @param Function over The function to fire whenever the mouse is moved over a matched element.
470          * @param Function out The function to fire whenever the mouse is moved off of a matched element.
471          * @cat Events
472          */
473         hover: function(f,g) {
474                 
475                 // A private function for handling mouse 'hovering'
476                 function handleHover(e) {
477                         // Check if mouse(over|out) are still within the same parent element
478                         var p = e.relatedTarget;
479         
480                         // Traverse up the tree
481                         while ( p && p != this ) try { p = p.parentNode; } catch(e) { p = this; };
482                         
483                         // If we actually just moused on to a sub-element, ignore it
484                         if ( p == this ) return false;
485                         
486                         // Execute the right function
487                         return (e.type == "mouseover" ? f : g).apply(this, [e]);
488                 }
489                 
490                 // Bind the function to the two event listeners
491                 return this.mouseover(handleHover).mouseout(handleHover);
492         },
493         
494         /**
495          * Bind a function to be executed whenever the DOM is ready to be
496          * traversed and manipulated. This is probably the most important 
497          * function included in the event module, as it can greatly improve
498          * the response times of your web applications.
499          *
500          * In a nutshell, this is a solid replacement for using window.onload, 
501          * and attaching a function to that. By using this method, your bound function 
502          * will be called the instant the DOM is ready to be read and manipulated, 
503          * which is when what 99.99% of all JavaScript code needs to run.
504          *
505          * There is one argument passed to the ready event handler: A reference to
506          * the jQuery function. You can name that argument whatever you like, and
507          * can therefore stick with the $ alias without risk of naming collisions.
508          * 
509          * Please ensure you have no code in your &lt;body&gt; onload event handler, 
510          * otherwise $(document).ready() may not fire.
511          *
512          * You can have as many $(document).ready events on your page as you like.
513          * The functions are then executed in the order they were added.
514          *
515          * @example $(document).ready(function(){ Your code here... });
516          *
517          * @example jQuery(function($) {
518          *   // Your code using failsafe $ alias here...
519          * });
520          * @desc Uses both the [[Core#.24.28_fn_.29|shortcut]] for $(document).ready() and the argument
521          * to write failsafe jQuery code using the $ alias, without relying on the
522          * global alias.
523          *
524          * @name ready
525          * @type jQuery
526          * @param Function fn The function to be executed when the DOM is ready.
527          * @cat Events
528          * @see $.noConflict()
529          * @see $(Function)
530          */
531         ready: function(f) {
532                 // If the DOM is already ready
533                 if ( jQuery.isReady )
534                         // Execute the function immediately
535                         f.apply( document, [jQuery] );
536                         
537                 // Otherwise, remember the function for later
538                 else
539                         // Add the function to the wait list
540                         jQuery.readyList.push( function() { return f.apply(this, [jQuery]); } );
541         
542                 return this;
543         }
544 });
545
546 jQuery.extend({
547         /*
548          * All the code that makes DOM Ready work nicely.
549          */
550         isReady: false,
551         readyList: [],
552         
553         // Handle when the DOM is ready
554         ready: function() {
555                 // Make sure that the DOM is not already loaded
556                 if ( !jQuery.isReady ) {
557                         // Remember that the DOM is ready
558                         jQuery.isReady = true;
559                         
560                         // If there are functions bound, to execute
561                         if ( jQuery.readyList ) {
562                                 // Execute all of them
563                                 jQuery.each( jQuery.readyList, function(){
564                                         this.apply( document );
565                                 });
566                                 
567                                 // Reset the list of functions
568                                 jQuery.readyList = null;
569                         }
570                         // Remove event listener to avoid memory leak
571                         if ( jQuery.browser.mozilla || jQuery.browser.opera )
572                                 document.removeEventListener( "DOMContentLoaded", jQuery.ready, false );
573                         
574                         // Remove script element used by IE hack
575                         if( !window.frames.length ) // don't remove if frames are present (#1187)
576                                 jQuery(window).load(function(){ jQuery("#__ie_init").remove(); });
577                 }
578         }
579 });
580
581 new function(){
582
583         /**
584          * Bind a function to the scroll event of each matched element.
585          *
586          * @example $("p").scroll( function() { alert("Hello"); } );
587          * @before <p>Hello</p>
588          * @result <p onscroll="alert('Hello');">Hello</p>
589          *
590          * @name scroll
591          * @type jQuery
592          * @param Function fn A function to bind to the scroll event on each of the matched elements.
593          * @cat Events
594          */
595
596         /**
597          * Bind a function to the submit event of each matched element.
598          *
599          * @example $("#myform").submit( function() {
600          *   return $("input", this).val().length > 0;
601          * } );
602          * @before <form id="myform"><input /></form>
603          * @desc Prevents the form submission when the input has no value entered.
604          *
605          * @name submit
606          * @type jQuery
607          * @param Function fn A function to bind to the submit event on each of the matched elements.
608          * @cat Events
609          */
610
611         /**
612          * Trigger the submit event of each matched element. This causes all of the functions
613          * that have been bound to that submit event to be executed, and calls the browser's
614          * default submit action on the matching element(s). This default action can be prevented
615          * by returning false from one of the functions bound to the submit event.
616          *
617          * Note: This does not execute the submit method of the form element! If you need to
618          * submit the form via code, you have to use the DOM method, eg. $("form")[0].submit();
619          *
620          * @example $("form").submit();
621          * @desc Triggers all submit events registered to the matched form(s), and submits them.
622          *
623          * @name submit
624          * @type jQuery
625          * @cat Events
626          */
627
628         /**
629          * Bind a function to the focus event of each matched element.
630          *
631          * @example $("p").focus( function() { alert("Hello"); } );
632          * @before <p>Hello</p>
633          * @result <p onfocus="alert('Hello');">Hello</p>
634          *
635          * @name focus
636          * @type jQuery
637          * @param Function fn A function to bind to the focus event on each of the matched elements.
638          * @cat Events
639          */
640
641         /**
642          * Trigger the focus event of each matched element. This causes all of the functions
643          * that have been bound to thet focus event to be executed.
644          *
645          * Note: This does not execute the focus method of the underlying elements! If you need to
646          * focus an element via code, you have to use the DOM method, eg. $("#myinput")[0].focus();
647          *
648          * @example $("p").focus();
649          * @before <p onfocus="alert('Hello');">Hello</p>
650          * @result alert('Hello');
651          *
652          * @name focus
653          * @type jQuery
654          * @cat Events
655          */
656
657         /**
658          * Bind a function to the keydown event of each matched element.
659          *
660          * @example $("p").keydown( function() { alert("Hello"); } );
661          * @before <p>Hello</p>
662          * @result <p onkeydown="alert('Hello');">Hello</p>
663          *
664          * @name keydown
665          * @type jQuery
666          * @param Function fn A function to bind to the keydown event on each of the matched elements.
667          * @cat Events
668          */
669
670         /**
671          * Bind a function to the dblclick event of each matched element.
672          *
673          * @example $("p").dblclick( function() { alert("Hello"); } );
674          * @before <p>Hello</p>
675          * @result <p ondblclick="alert('Hello');">Hello</p>
676          *
677          * @name dblclick
678          * @type jQuery
679          * @param Function fn A function to bind to the dblclick event on each of the matched elements.
680          * @cat Events
681          */
682
683         /**
684          * Bind a function to the keypress event of each matched element.
685          *
686          * @example $("p").keypress( function() { alert("Hello"); } );
687          * @before <p>Hello</p>
688          * @result <p onkeypress="alert('Hello');">Hello</p>
689          *
690          * @name keypress
691          * @type jQuery
692          * @param Function fn A function to bind to the keypress event on each of the matched elements.
693          * @cat Events
694          */
695
696         /**
697          * Bind a function to the error event of each matched element.
698          *
699          * @example $("p").error( function() { alert("Hello"); } );
700          * @before <p>Hello</p>
701          * @result <p onerror="alert('Hello');">Hello</p>
702          *
703          * @name error
704          * @type jQuery
705          * @param Function fn A function to bind to the error event on each of the matched elements.
706          * @cat Events
707          */
708
709         /**
710          * Bind a function to the blur event of each matched element.
711          *
712          * @example $("p").blur( function() { alert("Hello"); } );
713          * @before <p>Hello</p>
714          * @result <p onblur="alert('Hello');">Hello</p>
715          *
716          * @name blur
717          * @type jQuery
718          * @param Function fn A function to bind to the blur event on each of the matched elements.
719          * @cat Events
720          */
721
722         /**
723          * Trigger the blur event of each matched element. This causes all of the functions
724          * that have been bound to that blur event to be executed, and calls the browser's
725          * default blur action on the matching element(s). This default action can be prevented
726          * by returning false from one of the functions bound to the blur event.
727          *
728          * Note: This does not execute the blur method of the underlying elements! If you need to
729          * blur an element via code, you have to use the DOM method, eg. $("#myinput")[0].blur();
730          *
731          * @example $("p").blur();
732          * @before <p onblur="alert('Hello');">Hello</p>
733          * @result alert('Hello');
734          *
735          * @name blur
736          * @type jQuery
737          * @cat Events
738          */
739
740         /**
741          * Bind a function to the load event of each matched element.
742          *
743          * @example $("p").load( function() { alert("Hello"); } );
744          * @before <p>Hello</p>
745          * @result <p onload="alert('Hello');">Hello</p>
746          *
747          * @name load
748          * @type jQuery
749          * @param Function fn A function to bind to the load event on each of the matched elements.
750          * @cat Events
751          */
752
753         /**
754          * Bind a function to the select event of each matched element.
755          *
756          * @example $("p").select( function() { alert("Hello"); } );
757          * @before <p>Hello</p>
758          * @result <p onselect="alert('Hello');">Hello</p>
759          *
760          * @name select
761          * @type jQuery
762          * @param Function fn A function to bind to the select event on each of the matched elements.
763          * @cat Events
764          */
765
766         /**
767          * Trigger the select event of each matched element. This causes all of the functions
768          * that have been bound to that select event to be executed, and calls the browser's
769          * default select action on the matching element(s). This default action can be prevented
770          * by returning false from one of the functions bound to the select event.
771          *
772          * @example $("p").select();
773          * @before <p onselect="alert('Hello');">Hello</p>
774          * @result alert('Hello');
775          *
776          * @name select
777          * @type jQuery
778          * @cat Events
779          */
780
781         /**
782          * Bind a function to the mouseup event of each matched element.
783          *
784          * @example $("p").mouseup( function() { alert("Hello"); } );
785          * @before <p>Hello</p>
786          * @result <p onmouseup="alert('Hello');">Hello</p>
787          *
788          * @name mouseup
789          * @type jQuery
790          * @param Function fn A function to bind to the mouseup event on each of the matched elements.
791          * @cat Events
792          */
793
794         /**
795          * Bind a function to the unload event of each matched element.
796          *
797          * @example $("p").unload( function() { alert("Hello"); } );
798          * @before <p>Hello</p>
799          * @result <p onunload="alert('Hello');">Hello</p>
800          *
801          * @name unload
802          * @type jQuery
803          * @param Function fn A function to bind to the unload event on each of the matched elements.
804          * @cat Events
805          */
806
807         /**
808          * Bind a function to the change event of each matched element.
809          *
810          * @example $("p").change( function() { alert("Hello"); } );
811          * @before <p>Hello</p>
812          * @result <p onchange="alert('Hello');">Hello</p>
813          *
814          * @name change
815          * @type jQuery
816          * @param Function fn A function to bind to the change event on each of the matched elements.
817          * @cat Events
818          */
819
820         /**
821          * Bind a function to the mouseout event of each matched element.
822          *
823          * @example $("p").mouseout( function() { alert("Hello"); } );
824          * @before <p>Hello</p>
825          * @result <p onmouseout="alert('Hello');">Hello</p>
826          *
827          * @name mouseout
828          * @type jQuery
829          * @param Function fn A function to bind to the mouseout event on each of the matched elements.
830          * @cat Events
831          */
832
833         /**
834          * Bind a function to the keyup event of each matched element.
835          *
836          * @example $("p").keyup( function() { alert("Hello"); } );
837          * @before <p>Hello</p>
838          * @result <p onkeyup="alert('Hello');">Hello</p>
839          *
840          * @name keyup
841          * @type jQuery
842          * @param Function fn A function to bind to the keyup event on each of the matched elements.
843          * @cat Events
844          */
845
846         /**
847          * Bind a function to the click event of each matched element.
848          *
849          * @example $("p").click( function() { alert("Hello"); } );
850          * @before <p>Hello</p>
851          * @result <p onclick="alert('Hello');">Hello</p>
852          *
853          * @name click
854          * @type jQuery
855          * @param Function fn A function to bind to the click event on each of the matched elements.
856          * @cat Events
857          */
858
859         /**
860          * Trigger the click event of each matched element. This causes all of the functions
861          * that have been bound to thet click event to be executed.
862          *
863          * @example $("p").click();
864          * @before <p onclick="alert('Hello');">Hello</p>
865          * @result alert('Hello');
866          *
867          * @name click
868          * @type jQuery
869          * @cat Events
870          */
871
872         /**
873          * Bind a function to the resize event of each matched element.
874          *
875          * @example $("p").resize( function() { alert("Hello"); } );
876          * @before <p>Hello</p>
877          * @result <p onresize="alert('Hello');">Hello</p>
878          *
879          * @name resize
880          * @type jQuery
881          * @param Function fn A function to bind to the resize event on each of the matched elements.
882          * @cat Events
883          */
884
885         /**
886          * Bind a function to the mousemove event of each matched element.
887          *
888          * @example $("p").mousemove( function() { alert("Hello"); } );
889          * @before <p>Hello</p>
890          * @result <p onmousemove="alert('Hello');">Hello</p>
891          *
892          * @name mousemove
893          * @type jQuery
894          * @param Function fn A function to bind to the mousemove event on each of the matched elements.
895          * @cat Events
896          */
897
898         /**
899          * Bind a function to the mousedown event of each matched element.
900          *
901          * @example $("p").mousedown( function() { alert("Hello"); } );
902          * @before <p>Hello</p>
903          * @result <p onmousedown="alert('Hello');">Hello</p>
904          *
905          * @name mousedown
906          * @type jQuery
907          * @param Function fn A function to bind to the mousedown event on each of the matched elements.
908          * @cat Events
909          */
910          
911         /**
912          * Bind a function to the mouseover event of each matched element.
913          *
914          * @example $("p").mouseover( function() { alert("Hello"); } );
915          * @before <p>Hello</p>
916          * @result <p onmouseover="alert('Hello');">Hello</p>
917          *
918          * @name mouseover
919          * @type jQuery
920          * @param Function fn A function to bind to the mousedown event on each of the matched elements.
921          * @cat Events
922          */
923         jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
924                 "mousedown,mouseup,mousemove,mouseover,mouseout,change,select," + 
925                 "submit,keydown,keypress,keyup,error").split(","), function(i,o){
926                 
927                 // Handle event binding
928                 jQuery.fn[o] = function(f){
929                         return f ? this.bind(o, f) : this.trigger(o);
930                 };
931                         
932         });
933         
934         // If Mozilla is used
935         if ( jQuery.browser.mozilla || jQuery.browser.opera )
936                 // Use the handy event callback
937                 document.addEventListener( "DOMContentLoaded", jQuery.ready, false );
938         
939         // If IE is used, use the excellent hack by Matthias Miller
940         // http://www.outofhanwell.com/blog/index.php?title=the_window_onload_problem_revisited
941         else if ( jQuery.browser.msie ) {
942         
943                 // Only works if you document.write() it
944                 document.write("<scr" + "ipt id=__ie_init defer=true " + 
945                         "src=//:><\/script>");
946         
947                 // Use the defer script hack
948                 var script = document.getElementById("__ie_init");
949                 
950                 // script does not exist if jQuery is loaded dynamically
951                 if ( script ) 
952                         script.onreadystatechange = function() {
953                                 if ( document.readyState != "complete" ) return;
954                                 jQuery.ready();
955                         };
956         
957                 // Clear from memory
958                 script = null;
959         
960         // If Safari  is used
961         } else if ( jQuery.browser.safari )
962                 // Continually check to see if the document.readyState is valid
963                 jQuery.safariTimer = setInterval(function(){
964                         // loaded and complete are both valid states
965                         if ( document.readyState == "loaded" || 
966                                 document.readyState == "complete" ) {
967         
968                                 // If either one are found, remove the timer
969                                 clearInterval( jQuery.safariTimer );
970                                 jQuery.safariTimer = null;
971         
972                                 // and execute any waiting functions
973                                 jQuery.ready();
974                         }
975                 }, 10); 
976
977         // A fallback to window.onload, that will always work
978         jQuery.event.add( window, "load", jQuery.ready );
979         
980 };