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