Added test for attr('checked', {true|false}) (bug #167)
[jquery.git] / src / jquery / jquery.js
1 /*
2  * jQuery - New Wave Javascript
3  *
4  * Copyright (c) 2006 John Resig (jquery.com)
5  * Dual licensed under the MIT (MIT-LICENSE.txt)
6  * and GPL (GPL-LICENSE.txt) licenses.
7  *
8  * $Date$
9  * $Rev$
10  */
11
12 // Global undefined variable
13 window.undefined = window.undefined;
14
15 /**
16  * Create a new jQuery Object
17  *
18  * @test ok( Array.prototype.push, "Array.push()" );
19  * @test ok( Function.prototype.apply, "Function.apply()" );
20  * @test ok( document.getElementById, "getElementById" );
21  * @test ok( document.getElementsByTagName, "getElementsByTagName" );
22  * @test ok( RegExp, "RegExp" );
23  * @test ok( jQuery, "jQuery" );
24  * @test ok( $, "$()" );
25  *
26  * @constructor
27  * @private
28  * @name jQuery
29  * @cat Core
30  */
31 function jQuery(a,c) {
32
33         // Shortcut for document ready (because $(document).each() is silly)
34         if ( a && a.constructor == Function && jQuery.fn.ready )
35                 return jQuery(document).ready(a);
36
37         // Make sure that a selection was provided
38         a = a || jQuery.context || document;
39
40         // Watch for when a jQuery object is passed as the selector
41         if ( a.jquery )
42                 return jQuery( jQuery.merge( a, [] ) );
43
44         // Watch for when a jQuery object is passed at the context
45         if ( c && c.jquery )
46                 return jQuery( c ).find(a);
47
48         // If the context is global, return a new object
49         if ( window == this )
50                 return new jQuery(a,c);
51
52         // Handle HTML strings
53         var m = /^[^<]*(<.+>)[^>]*$/.exec(a);
54         if ( m ) a = jQuery.clean( [ m[1] ] );
55
56         // Watch for when an array is passed in
57         this.get( a.constructor == Array || a.length && !a.nodeType && a[0] != undefined && a[0].nodeType ?
58                 // Assume that it is an array of DOM Elements
59                 jQuery.merge( a, [] ) :
60
61                 // Find the matching elements and save them for later
62                 jQuery.find( a, c ) );
63
64   // See if an extra function was provided
65         var fn = arguments[ arguments.length - 1 ];
66
67         // If so, execute it in context
68         if ( fn && fn.constructor == Function )
69                 this.each(fn);
70 }
71
72 // Map over the $ in case of overwrite
73 if ( typeof $ != "undefined" )
74         jQuery._$ = $;
75
76 /**
77  * This function accepts a string containing a CSS selector,
78  * basic XPath, or raw HTML, which is then used to match a set of elements.
79  * The HTML string is different from the traditional selectors in that
80  * it creates the DOM elements representing that HTML string, on the fly,
81  * to be (assumedly) inserted into the document later.
82  *
83  * The core functionality of jQuery centers around this function.
84  * Everything in jQuery is based upon this, or uses this in some way.
85  * The most basic use of this function is to pass in an expression
86  * (usually consisting of CSS or XPath), which then finds all matching
87  * elements and remembers them for later use.
88  *
89  * By default, $() looks for DOM elements within the context of the
90  * current HTML document.
91  *
92  * @example $("div > p")
93  * @desc This finds all p elements that are children of a div element.
94  * @before <p>one</p> <div><p>two</p></div> <p>three</p>
95  * @result [ <p>two</p> ]
96  *
97  * @example $("<div><p>Hello</p></div>").appendTo("#body")
98  * @desc Creates a div element (and all of its contents) dynamically, and appends it to the element with the ID of body.
99  *
100  * @name $
101  * @param String expr An expression to search with, or a string of HTML to create on the fly.
102  * @cat Core
103  * @type jQuery
104  */
105
106 /**
107  * This function accepts a string containing a CSS selector, or
108  * basic XPath, which is then used to match a set of elements with the
109  * context of the specified DOM element, or document
110  *
111  * @example $("div", xml.responseXML)
112  * @desc This finds all div elements within the specified XML document.
113  *
114  * @name $
115  * @param String expr An expression to search with.
116  * @param Element context A DOM Element, or Document, representing the base context.
117  * @cat Core
118  * @type jQuery
119  */
120
121 /**
122  * Wrap jQuery functionality around a specific DOM Element.
123  * This function also accepts XML Documents and Window objects
124  * as valid arguments (even though they are not DOM Elements).
125  *
126  * @example $(document).find("div > p")
127  * @before <p>one</p> <div><p>two</p></div> <p>three</p>
128  * @result [ <p>two</p> ]
129  *
130  * @example $(document.body).background( "black" );
131  * @desc Sets the background color of the page to black.
132  *
133  * @name $
134  * @param Element elem A DOM element to be encapsulated by a jQuery object.
135  * @cat Core
136  * @type jQuery
137  */
138
139 /**
140  * Wrap jQuery functionality around a set of DOM Elements.
141  *
142  * @example $( myForm.elements ).hide()
143  * @desc Hides all the input elements within a form
144  *
145  * @name $
146  * @param Array<Element> elems An array of DOM elements to be encapsulated by a jQuery object.
147  * @cat Core
148  * @type jQuery
149  */
150
151 /**
152  * A shorthand for $(document).ready(), allowing you to bind a function
153  * to be executed when the DOM document has finished loading. This function
154  * behaves just like $(document).ready(), in that it should be used to wrap
155  * all of the other $() operations on your page. While this function is,
156  * technically, chainable - there really isn't much use for chaining against it.
157  *
158  * @example $(function(){
159  *   // Document is ready
160  * });
161  * @desc Executes the function when the DOM is ready to be used.
162  *
163  * @name $
164  * @param Function fn The function to execute when the DOM is ready.
165  * @cat Core
166  * @type jQuery
167  */
168
169 /**
170  * A means of creating a cloned copy of a jQuery object. This function
171  * copies the set of matched elements from one jQuery object and creates
172  * another, new, jQuery object containing the same elements.
173  *
174  * @example var div = $("div");
175  * $( div ).find("p");
176  * @desc Locates all p elements with all div elements, without disrupting the original jQuery object contained in 'div' (as would normally be the case if a simple div.find("p") was done).
177  *
178  * @name $
179  * @param jQuery obj The jQuery object to be cloned.
180  * @cat Core
181  * @type jQuery
182  */
183
184 // Map the jQuery namespace to the '$' one
185 var $ = jQuery;
186
187 jQuery.fn = jQuery.prototype = {
188         /**
189          * The current SVN version of jQuery.
190          *
191          * @private
192          * @property
193          * @name jquery
194          * @type String
195          * @cat Core
196          */
197         jquery: "$Rev$",
198
199         /**
200          * The number of elements currently matched.
201          *
202          * @example $("img").length;
203          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
204          * @result 2
205          *
206          * @test cmpOK( $("div").length, "==", 2, "Get Number of Elements Found" );
207          *
208          * @property
209          * @name length
210          * @type Number
211          * @cat Core
212          */
213
214         /**
215          * The number of elements currently matched.
216          *
217          * @example $("img").size();
218          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
219          * @result 2
220          *
221          * @test cmpOK( $("div").size(), "==", 2, "Get Number of Elements Found" );
222          *
223          * @name size
224          * @type Number
225          * @cat Core
226          */
227         size: function() {
228                 return this.length;
229         },
230
231         /**
232          * Access all matched elements. This serves as a backwards-compatible
233          * way of accessing all matched elements (other than the jQuery object
234          * itself, which is, in fact, an array of elements).
235          *
236          * @example $("img").get();
237          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
238          * @result [ <img src="test1.jpg"/> <img src="test2.jpg"/> ]
239          *
240          * @test isSet( $("div").get(), q("main","foo"), "Get All Elements" );
241          *
242          * @name get
243          * @type Array<Element>
244          * @cat Core
245          */
246
247         /**
248          * Access a single matched element. num is used to access the
249          * Nth element matched.
250          *
251          * @example $("img").get(1);
252          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
253          * @result [ <img src="test1.jpg"/> ]
254          *
255          * @test cmpOK( $("div").get(0), "==", document.getElementById("main"), "Get A Single Element" );
256          *
257          * @name get
258          * @type Element
259          * @param Number num Access the element in the Nth position.
260          * @cat Core
261          */
262
263         /**
264          * Set the jQuery object to an array of elements.
265          *
266          * @example $("img").get([ document.body ]);
267          * @result $("img").get() == [ document.body ]
268          *
269          * @private
270          * @name get
271          * @type jQuery
272          * @param Elements elems An array of elements
273          * @cat Core
274          */
275         get: function( num ) {
276                 // Watch for when an array (of elements) is passed in
277                 if ( num && num.constructor == Array ) {
278
279                         // Use a tricky hack to make the jQuery object
280                         // look and feel like an array
281                         this.length = 0;
282                         [].push.apply( this, num );
283
284                         return this;
285                 } else
286                         return num == undefined ?
287
288                                 // Return a 'clean' array
289                                 jQuery.merge( this, [] ) :
290
291                                 // Return just the object
292                                 this[num];
293         },
294
295         /**
296          * Execute a function within the context of every matched element.
297          * This means that every time the passed-in function is executed
298          * (which is once for every element matched) the 'this' keyword
299          * points to the specific element.
300          *
301          * Additionally, the function, when executed, is passed a single
302          * argument representing the position of the element in the matched
303          * set.
304          *
305          * @example $("img").each(function(){
306          *   this.src = "test.jpg";
307          * });
308          * @before <img/> <img/>
309          * @result <img src="test.jpg"/> <img src="test.jpg"/>
310          *
311          * @example $("img").each(function(i){
312          *   alert( "Image #" + i + " is " + this );
313          * });
314          * @before <img/> <img/>
315          * @result <img src="test.jpg"/> <img src="test.jpg"/>
316          *
317          * @test var div = $("div");
318          * div.each(function(){this.foo = 'zoo';});
319          * var pass = true;
320          * for ( var i = 0; i < div.size(); i++ ) {
321          *   if ( div.get(i).foo != "zoo" ) pass = false;
322          * }
323          * ok( pass, "Execute a function, Relative" );
324          *
325          * @name each
326          * @type jQuery
327          * @param Function fn A function to execute
328          * @cat Core
329          */
330         each: function( fn, args ) {
331                 return jQuery.each( this, fn, args );
332         },
333
334         /**
335          * Searches every matched element for the object and returns
336          * the index of the element, if found, starting with zero. 
337          * Returns -1 if the object wasn't found.
338          *
339          * @example $("*").index(document.getElementById('foobar')) 
340          * @before <div id="foobar"></div><b></b><span id="foo"></span>
341          * @result 0
342          *
343          * @example $("*").index(document.getElementById('foo')) 
344          * @before <div id="foobar"></div><b></b><span id="foo"></span>
345          * @result 2
346          *
347          * @example $("*").index(document.getElementById('bar')) 
348          * @before <div id="foobar"></div><b></b><span id="foo"></span>
349          * @result -1
350          *
351          * @test ok( $([window, document]).index(window) == 0, "Check for index of elements" );
352          * @test ok( $([window, document]).index(document) == 1, "Check for index of elements" );
353          * @test var inputElements = $('#radio1,#radio2,#check1,#check2');
354          * @test ok( inputElements.index(document.getElementById('radio1')) == 0, "Check for index of elements" );
355          * @test ok( inputElements.index(document.getElementById('radio2')) == 1, "Check for index of elements" );
356          * @test ok( inputElements.index(document.getElementById('check1')) == 2, "Check for index of elements" );
357          * @test ok( inputElements.index(document.getElementById('check2')) == 3, "Check for index of elements" );
358          * @test ok( inputElements.index(window) == -1, "Check for not found index" );
359          * @test ok( inputElements.index(document) == -1, "Check for not found index" );
360          * 
361          * @name index
362          * @type Number
363          * @param Object obj Object to search for
364          * @cat Core
365          */
366         index: function( obj ) {
367                 var pos = -1;
368                 this.each(function(i){
369                         if ( this == obj ) pos = i;
370                 });
371                 return pos;
372         },
373
374         /**
375          * Access a property on the first matched element.
376          * This method makes it easy to retrieve a property value
377          * from the first matched element.
378          *
379          * @example $("img").attr("src");
380          * @before <img src="test.jpg"/>
381          * @result test.jpg
382          *
383          * @test ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );
384          * @test ok( $('#text1').attr('type') == "text", 'Check for type attribute' );
385          * @test ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );
386          * @test ok( $('#check1').attr('type') == "checkbox", 'Check for type attribute' );
387          * @test ok( $('#simon1').attr('rel') == "bookmark", 'Check for rel attribute' );
388          * @test ok( $('#google').attr('title') == "Google!", 'Check for title attribute' );
389          * @test ok( $('#mark').attr('hreflang') == "en", 'Check for hreflang attribute' );
390          * @test ok( $('#en').attr('lang') == "en", 'Check for lang attribute' );
391          * @test ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
392          * @test ok( $('#name').attr('name') == "name", 'Check for name attribute' );
393          * 
394          * @name attr
395          * @type Object
396          * @param String name The name of the property to access.
397          * @cat DOM
398          */
399
400         /**
401          * Set a hash of key/value object properties to all matched elements.
402          * This serves as the best way to set a large number of properties
403          * on all matched elements.
404          *
405          * @example $("img").attr({ src: "test.jpg", alt: "Test Image" });
406          * @before <img/>
407          * @result <img src="test.jpg" alt="Test Image"/>
408          *
409          * @test var pass = true;
410          * $("div").attr({foo: 'baz', zoo: 'ping'}).each(function(){
411          *   if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
412          * });
413          * ok( pass, "Set Multiple Attributes" );
414          *
415          * @name attr
416          * @type jQuery
417          * @param Hash prop A set of key/value pairs to set as object properties.
418          * @cat DOM
419          */
420
421         /**
422          * Set a single property to a value, on all matched elements.
423          *
424          * @example $("img").attr("src","test.jpg");
425          * @before <img/>
426          * @result <img src="test.jpg"/>
427          *
428          * @test var div = $("div");
429          * div.attr("foo", "bar");
430          * var pass = true;
431          * for ( var i = 0; i < div.size(); i++ ) {
432          *   if ( div.get(i).getAttribute('foo') != "bar" ) pass = false;
433          * }
434          * ok( pass, "Set Attribute" );
435          *
436          * @test $("#name").attr('name', 'something');
437          * ok( $("#name").name() == 'something', 'Set name attribute' );
438          * @test $("#check2").attr('checked', true);
439          * ok( document.getElementById('check2').checked == true, 'Set checked attribute' );
440          * $("#check2").attr('checked', false);
441          * ok( document.getElementById('check2').checked == false, 'Set checked attribute' );
442          *
443          * @name attr
444          * @type jQuery
445          * @param String key The name of the property to set.
446          * @param Object value The value to set the property to.
447          * @cat DOM
448          */
449         attr: function( key, value, type ) {
450                 // Check to see if we're setting style values
451                 return key.constructor != String || value != undefined ?
452                         this.each(function(){
453                                 // See if we're setting a hash of styles
454                                 if ( value == undefined )
455                                         // Set all the styles
456                                         for ( var prop in key )
457                                                 jQuery.attr(
458                                                         type ? this.style : this,
459                                                         prop, key[prop]
460                                                 );
461
462                                 // See if we're setting a single key/value style
463                                 else
464                                         jQuery.attr(
465                                                 type ? this.style : this,
466                                                 key, value
467                                         );
468                         }) :
469
470                         // Look for the case where we're accessing a style value
471                         jQuery[ type || "attr" ]( this[0], key );
472         },
473
474         /**
475          * Access a style property on the first matched element.
476          * This method makes it easy to retrieve a style property value
477          * from the first matched element.
478          *
479          * @example $("p").css("color");
480          * @before <p style="color:red;">Test Paragraph.</p>
481          * @result red
482          * @desc Retrieves the color style of the first paragraph
483          *
484          * @example $("p").css("fontWeight");
485          * @before <p style="font-weight: bold;">Test Paragraph.</p>
486          * @result bold
487          * @desc Retrieves the font-weight style of the first paragraph.
488          * Note that for all style properties with a dash (like 'font-weight'), you have to
489          * write it in camelCase. In other words: Every time you have a '-' in a 
490          * property, remove it and replace the next character with an uppercase 
491          * representation of itself. Eg. fontWeight, fontSize, fontFamily, borderWidth,
492          * borderStyle, borderBottomWidth etc.
493          *
494          * @test ok( $('#foo').css("display") == 'block', 'Check for css property "display"');
495          *
496          * @name css
497          * @type Object
498          * @param String name The name of the property to access.
499          * @cat CSS
500          */
501
502         /**
503          * Set a hash of key/value style properties to all matched elements.
504          * This serves as the best way to set a large number of style properties
505          * on all matched elements.
506          *
507          * @example $("p").css({ color: "red", background: "blue" });
508          * @before <p>Test Paragraph.</p>
509          * @result <p style="color:red; background:blue;">Test Paragraph.</p>
510          *
511          * @test ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
512          * @test $('#foo').css({display: 'none'});
513          * ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
514          * @test $('#foo').css({display: 'block'});
515          * ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
516          * 
517          * @name css
518          * @type jQuery
519          * @param Hash prop A set of key/value pairs to set as style properties.
520          * @cat CSS
521          */
522
523         /**
524          * Set a single style property to a value, on all matched elements.
525          *
526          * @example $("p").css("color","red");
527          * @before <p>Test Paragraph.</p>
528          * @result <p style="color:red;">Test Paragraph.</p>
529          * @desc Changes the color of all paragraphs to red
530          *
531          *
532          * @test ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
533          * @test $('#foo').css('display', 'none');
534          * ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
535          * @test $('#foo').css('display', 'block');
536          * ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
537          *
538          * @name css
539          * @type jQuery
540          * @param String key The name of the property to set.
541          * @param Object value The value to set the property to.
542          * @cat CSS
543          */
544         css: function( key, value ) {
545                 return this.attr( key, value, "curCSS" );
546         },
547
548         /**
549          * Retrieve the text contents of all matched elements. The result is
550          * a string that contains the combined text contents of all matched
551          * elements. This method works on both HTML and XML documents.
552          *
553          * @example $("p").text();
554          * @before <p>Test Paragraph.</p>
555          * @result Test Paragraph.
556          *
557          * @test var expected = "This link has class=\"blog\": Simon Willison's Weblog";
558          * ok( $('#sap').text() == expected, 'Check for merged text of more then one element.' );
559          *
560          * @name text
561          * @type String
562          * @cat DOM
563          */
564         text: function(e) {
565                 e = e || this;
566                 var t = "";
567                 for ( var j = 0; j < e.length; j++ ) {
568                         var r = e[j].childNodes;
569                         for ( var i = 0; i < r.length; i++ )
570                                 if ( r[i].nodeType != 8 )
571                                         t += r[i].nodeType != 1 ?
572                                                 r[i].nodeValue : jQuery.fn.text([ r[i] ]);
573                 }
574                 return t;
575         },
576
577         /**
578          * Wrap all matched elements with a structure of other elements.
579          * This wrapping process is most useful for injecting additional
580          * stucture into a document, without ruining the original semantic
581          * qualities of a document.
582          *
583          * This works by going through the first element
584          * provided (which is generated, on the fly, from the provided HTML)
585          * and finds the deepest ancestor element within its
586          * structure - it is that element that will en-wrap everything else.
587          *
588          * @example $("p").wrap("<div class='wrap'></div>");
589          * @before <p>Test Paragraph.</p>
590          * @result <div class='wrap'><p>Test Paragraph.</p></div>
591          * 
592          * @test var defaultText = 'Try them out:'
593          * var result = $('#first').wrap('<div class="red"><span></span></div>').text();
594          * ok( defaultText == result, 'Check for simple wrapping' );
595          * ok( $('#first').parent().parent().is('.red'), 'Check if wrapper div has class "red"' );
596          *
597          * @test var defaultText = 'Try them out:'
598          * var result = $('#first').wrap('<div class="red">xx<span></span>yy</div>').text()
599          * ok( 'xx' + defaultText + 'yy' == result, 'Check for wrapping' );
600          * ok( $('#first').parent().parent().is('.red'), 'Check if wrapper div has class "red"' );
601          *
602          * @name wrap
603          * @type jQuery
604          * @param String html A string of HTML, that will be created on the fly and wrapped around the target.
605          * @cat DOM/Manipulation
606          */
607
608         /**
609          * Wrap all matched elements with a structure of other elements.
610          * This wrapping process is most useful for injecting additional
611          * stucture into a document, without ruining the original semantic
612          * qualities of a document.
613          *
614          * This works by going through the first element
615          * provided and finding the deepest ancestor element within its
616          * structure - it is that element that will en-wrap everything else.
617          *
618          * @example $("p").wrap("<div class='wrap'></div>");
619          * @before <p>Test Paragraph.</p>
620          * @result <div class='wrap'><p>Test Paragraph.</p></div>
621          *
622          * @name wrap
623          * @type jQuery
624          * @param Element elem A DOM element that will be wrapped.
625          * @cat DOM/Manipulation
626          */
627         wrap: function() {
628                 // The elements to wrap the target around
629                 var a = jQuery.clean(arguments);
630
631                 // Wrap each of the matched elements individually
632                 return this.each(function(){
633                         // Clone the structure that we're using to wrap
634                         var b = a[0].cloneNode(true);
635
636                         // Insert it before the element to be wrapped
637                         this.parentNode.insertBefore( b, this );
638
639                         // Find he deepest point in the wrap structure
640                         while ( b.firstChild )
641                                 b = b.firstChild;
642
643                         // Move the matched element to within the wrap structure
644                         b.appendChild( this );
645                 });
646         },
647
648         /**
649          * Append any number of elements to the inside of every matched elements,
650          * generated from the provided HTML.
651          * This operation is similar to doing an appendChild to all the
652          * specified elements, adding them into the document.
653          *
654          * @example $("p").append("<b>Hello</b>");
655          * @before <p>I would like to say: </p>
656          * @result <p>I would like to say: <b>Hello</b></p>
657          *
658          * @test var defaultText = 'Try them out:'
659          * var result = $('#first').append('<b>buga</b>');
660          * ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
661          *
662          * @name append
663          * @type jQuery
664          * @param String html A string of HTML, that will be created on the fly and appended to the target.
665          * @cat DOM/Manipulation
666          */
667
668         /**
669          * Append an element to the inside of all matched elements.
670          * This operation is similar to doing an appendChild to all the
671          * specified elements, adding them into the document.
672          *
673          * @example $("p").append( $("#foo")[0] );
674          * @before <p>I would like to say: </p><b id="foo">Hello</b>
675          * @result <p>I would like to say: <b id="foo">Hello</b></p>
676          *
677          * @test var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
678          * $('#sap').append(document.getElementById('first'));
679          * ok( expected == $('#sap').text(), "Check for appending of element" );
680          *
681          * @name append
682          * @type jQuery
683          * @param Element elem A DOM element that will be appended.
684          * @cat DOM/Manipulation
685          */
686
687         /**
688          * Append any number of elements to the inside of all matched elements.
689          * This operation is similar to doing an appendChild to all the
690          * specified elements, adding them into the document.
691          *
692          * @example $("p").append( $("b") );
693          * @before <p>I would like to say: </p><b>Hello</b>
694          * @result <p>I would like to say: <b>Hello</b></p>
695          *
696          * @test var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
697          * $('#sap').append([document.getElementById('first'), document.getElementById('yahoo')]);
698          * ok( expected == $('#sap').text(), "Check for appending of array of elements" );
699          *
700          * @name append
701          * @type jQuery
702          * @param Array<Element> elems An array of elements, all of which will be appended.
703          * @cat DOM/Manipulation
704          */
705         append: function() {
706                 return this.domManip(arguments, true, 1, function(a){
707                         this.appendChild( a );
708                 });
709         },
710
711         /**
712          * Prepend any number of elements to the inside of every matched elements,
713          * generated from the provided HTML.
714          * This operation is the best way to insert dynamically created elements
715          * inside, at the beginning, of all the matched element.
716          *
717          * @example $("p").prepend("<b>Hello</b>");
718          * @before <p>I would like to say: </p>
719          * @result <p><b>Hello</b>I would like to say: </p>
720          *
721          * @test var defaultText = 'Try them out:'
722          * var result = $('#first').prepend('<b>buga</b>');
723          * ok( result.text() == 'buga' + defaultText, 'Check if text prepending works' );
724          *
725          * @name prepend
726          * @type jQuery
727          * @param String html A string of HTML, that will be created on the fly and appended to the target.
728          * @cat DOM/Manipulation
729          */
730
731         /**
732          * Prepend an element to the inside of all matched elements.
733          * This operation is the best way to insert an element inside, at the
734          * beginning, of all the matched element.
735          *
736          * @example $("p").prepend( $("#foo")[0] );
737          * @before <p>I would like to say: </p><b id="foo">Hello</b>
738          * @result <p><b id="foo">Hello</b>I would like to say: </p>
739          *       
740          * @test var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
741          * $('#sap').prepend(document.getElementById('first'));
742          * ok( expected == $('#sap').text(), "Check for prepending of element" );
743          *
744          * @name prepend
745          * @type jQuery
746          * @param Element elem A DOM element that will be appended.
747          * @cat DOM/Manipulation
748          */
749
750         /**
751          * Prepend any number of elements to the inside of all matched elements.
752          * This operation is the best way to insert a set of elements inside, at the
753          * beginning, of all the matched element.
754          *
755          * @example $("p").prepend( $("b") );
756          * @before <p>I would like to say: </p><b>Hello</b>
757          * @result <p><b>Hello</b>I would like to say: </p>
758          *
759          * @test var expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
760          * $('#sap').prepend([document.getElementById('first'), document.getElementById('yahoo')]);
761          * ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
762          *
763          * @name prepend
764          * @type jQuery
765          * @param Array<Element> elems An array of elements, all of which will be appended.
766          * @cat DOM/Manipulation
767          */
768         prepend: function() {
769                 return this.domManip(arguments, true, -1, function(a){
770                         this.insertBefore( a, this.firstChild );
771                 });
772         },
773
774         /**
775          * Insert any number of dynamically generated elements before each of the
776          * matched elements.
777          *
778          * @example $("p").before("<b>Hello</b>");
779          * @before <p>I would like to say: </p>
780          * @result <b>Hello</b><p>I would like to say: </p>
781          *
782          * @test var expected = 'This is a normal link: bugaYahoo';
783          * $('#yahoo').before('<b>buga</b>');
784          * ok( expected == $('#en').text(), 'Insert String before' );
785          *
786          * @name before
787          * @type jQuery
788          * @param String html A string of HTML, that will be created on the fly and appended to the target.
789          * @cat DOM/Manipulation
790          */
791
792         /**
793          * Insert an element before each of the matched elements.
794          *
795          * @example $("p").before( $("#foo")[0] );
796          * @before <p>I would like to say: </p><b id="foo">Hello</b>
797          * @result <b id="foo">Hello</b><p>I would like to say: </p>
798          *
799          * @test var expected = "This is a normal link: Try them out:Yahoo";
800          * $('#yahoo').before(document.getElementById('first'));
801          * ok( expected == $('#en').text(), "Insert element before" );
802          *
803          * @name before
804          * @type jQuery
805          * @param Element elem A DOM element that will be appended.
806          * @cat DOM/Manipulation
807          */
808
809         /**
810          * Insert any number of elements before each of the matched elements.
811          *
812          * @example $("p").before( $("b") );
813          * @before <p>I would like to say: </p><b>Hello</b>
814          * @result <b>Hello</b><p>I would like to say: </p>
815          *
816          * @test var expected = "This is a normal link: Try them out:diveintomarkYahoo";
817          * $('#yahoo').before([document.getElementById('first'), document.getElementById('mark')]);
818          * ok( expected == $('#en').text(), "Insert array of elements before" );
819          *
820          * @name before
821          * @type jQuery
822          * @param Array<Element> elems An array of elements, all of which will be appended.
823          * @cat DOM/Manipulation
824          */
825         before: function() {
826                 return this.domManip(arguments, false, 1, function(a){
827                         this.parentNode.insertBefore( a, this );
828                 });
829         },
830
831         /**
832          * Insert any number of dynamically generated elements after each of the
833          * matched elements.
834          *
835          * @example $("p").after("<b>Hello</b>");
836          * @before <p>I would like to say: </p>
837          * @result <p>I would like to say: </p><b>Hello</b>
838          *
839          * @test var expected = 'This is a normal link: Yahoobuga';
840          * $('#yahoo').after('<b>buga</b>');
841          * ok( expected == $('#en').text(), 'Insert String after' );
842          *
843          * @name after
844          * @type jQuery
845          * @param String html A string of HTML, that will be created on the fly and appended to the target.
846          * @cat DOM/Manipulation
847          */
848
849         /**
850          * Insert an element after each of the matched elements.
851          *
852          * @example $("p").after( $("#foo")[0] );
853          * @before <b id="foo">Hello</b><p>I would like to say: </p>
854          * @result <p>I would like to say: </p><b id="foo">Hello</b>
855          *
856          * @test var expected = "This is a normal link: YahooTry them out:";
857          * $('#yahoo').after(document.getElementById('first'));
858          * ok( expected == $('#en').text(), "Insert element after" );
859          *
860          * @name after
861          * @type jQuery
862          * @param Element elem A DOM element that will be appended.
863          * @cat DOM/Manipulation
864          */
865
866         /**
867          * Insert any number of elements after each of the matched elements.
868          *
869          * @example $("p").after( $("b") );
870          * @before <b>Hello</b><p>I would like to say: </p>
871          * @result <p>I would like to say: </p><b>Hello</b>
872          *
873          * @test var expected = "This is a normal link: YahooTry them out:diveintomark";
874          * $('#yahoo').after([document.getElementById('first'), document.getElementById('mark')]);
875          * ok( expected == $('#en').text(), "Insert array of elements after" );
876          *
877          * @name after
878          * @type jQuery
879          * @param Array<Element> elems An array of elements, all of which will be appended.
880          * @cat DOM/Manipulation
881          */
882         after: function() {
883                 return this.domManip(arguments, false, -1, function(a){
884                         this.parentNode.insertBefore( a, this.nextSibling );
885                 });
886         },
887
888         /**
889          * End the most recent 'destructive' operation, reverting the list of matched elements
890          * back to its previous state. After an end operation, the list of matched elements will
891          * revert to the last state of matched elements.
892          *
893          * @example $("p").find("span").end();
894          * @before <p><span>Hello</span>, how are you?</p>
895          * @result $("p").find("span").end() == [ <p>...</p> ]
896          *
897          * @test ok( 'Yahoo' == $('#yahoo').parent().end().text(), 'Check for end' );
898          *
899          * @name end
900          * @type jQuery
901          * @cat DOM/Traversing
902          */
903         end: function() {
904                 return this.get( this.stack.pop() );
905         },
906
907         /**
908          * Searches for all elements that match the specified expression.
909          * This method is the optimal way of finding additional descendant
910          * elements with which to process.
911          *
912          * All searching is done using a jQuery expression. The expression can be
913          * written using CSS 1-3 Selector syntax, or basic XPath.
914          *
915          * @example $("p").find("span");
916          * @before <p><span>Hello</span>, how are you?</p>
917          * @result $("p").find("span") == [ <span>Hello</span> ]
918          *
919          * @test ok( 'Yahoo' == $('#foo').find('.blogTest').text(), 'Check for find' );
920          *
921          * @name find
922          * @type jQuery
923          * @param String expr An expression to search with.
924          * @cat DOM/Traversing
925          */
926         find: function(t) {
927                 return this.pushStack( jQuery.map( this, function(a){
928                         return jQuery.find(t,a);
929                 }), arguments );
930         },
931
932         /**
933          * Create cloned copies of all matched DOM Elements. This does
934          * not create a cloned copy of this particular jQuery object,
935          * instead it creates duplicate copies of all DOM Elements.
936          * This is useful for moving copies of the elements to another
937          * location in the DOM.
938          *
939          * @example $("b").clone().prependTo("p");
940          * @before <b>Hello</b><p>, how are you?</p>
941          * @result <b>Hello</b><p><b>Hello</b>, how are you?</p>
942          *
943          * @test ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' );
944          * var clone = $('#yahoo').clone();
945          * ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' );
946          * ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Reassert text for #en' );
947          *
948          * @name clone
949          * @type jQuery
950          * @cat DOM/Manipulation
951          */
952         clone: function(deep) {
953                 return this.pushStack( jQuery.map( this, function(a){
954                         return a.cloneNode( deep != undefined ? deep : true );
955                 }), arguments );
956         },
957
958         /**
959          * Removes all elements from the set of matched elements that do not
960          * match the specified expression. This method is used to narrow down
961          * the results of a search.
962          *
963          * All searching is done using a jQuery expression. The expression
964          * can be written using CSS 1-3 Selector syntax, or basic XPath.
965          *
966          * @example $("p").filter(".selected")
967          * @before <p class="selected">Hello</p><p>How are you?</p>
968          * @result $("p").filter(".selected") == [ <p class="selected">Hello</p> ]
969          *
970          * @test isSet( $("input").filter(":checked").get(), q("radio2", "check1"), "Filter elements" );
971          *
972          * @name filter
973          * @type jQuery
974          * @param String expr An expression to search with.
975          * @cat DOM/Traversing
976          */
977
978         /**
979          * Removes all elements from the set of matched elements that do not
980          * match at least one of the expressions passed to the function. This
981          * method is used when you want to filter the set of matched elements
982          * through more than one expression.
983          *
984          * Elements will be retained in the jQuery object if they match at
985          * least one of the expressions passed.
986          *
987          * @example $("p").filter([".selected", ":first"])
988          * @before <p>Hello</p><p>Hello Again</p><p class="selected">And Again</p>
989          * @result $("p").filter([".selected", ":first"]) == [ <p>Hello</p>, <p class="selected">And Again</p> ]
990          *
991          * @name filter
992          * @type jQuery
993          * @param Array<String> exprs A set of expressions to evaluate against
994          * @cat DOM/Traversing
995          */
996         filter: function(t) {
997                 return this.pushStack(
998                         t.constructor == Array &&
999                         jQuery.map(this,function(a){
1000                                 for ( var i = 0; i < t.length; i++ )
1001                                         if ( jQuery.filter(t[i],[a]).r.length )
1002                                                 return a;
1003                         }) ||
1004
1005                         t.constructor == Boolean &&
1006                         ( t ? this.get() : [] ) ||
1007
1008                         t.constructor == Function &&
1009                         jQuery.grep( this, t ) ||
1010
1011                         jQuery.filter(t,this).r, arguments );
1012         },
1013
1014         /**
1015          * Removes the specified Element from the set of matched elements. This
1016          * method is used to remove a single Element from a jQuery object.
1017          *
1018          * @example $("p").not( document.getElementById("selected") )
1019          * @before <p>Hello</p><p id="selected">Hello Again</p>
1020          * @result [ <p>Hello</p> ]
1021          *
1022          * @name not
1023          * @type jQuery
1024          * @param Element el An element to remove from the set
1025          * @cat DOM/Traversing
1026          */
1027
1028         /**
1029          * Removes elements matching the specified expression from the set
1030          * of matched elements. This method is used to remove one or more
1031          * elements from a jQuery object.
1032          *
1033          * @example $("p").not("#selected")
1034          * @before <p>Hello</p><p id="selected">Hello Again</p>
1035          * @result [ <p>Hello</p> ]
1036          * @test cmpOK($("#main > p#ap > a").not("#google").length, "==", 2, ".not")
1037          *
1038          * @name not
1039          * @type jQuery
1040          * @param String expr An expression with which to remove matching elements
1041          * @cat DOM/Traversing
1042          */
1043         not: function(t) {
1044                 return this.pushStack( t.constructor == String ?
1045                         jQuery.filter(t,this,false).r :
1046                         jQuery.grep(this,function(a){ return a != t; }), arguments );
1047         },
1048
1049         /**
1050          * Adds the elements matched by the expression to the jQuery object. This
1051          * can be used to concatenate the result sets of two expressions.
1052          *
1053          * @example $("p").add("span")
1054          * @before <p>Hello</p><p><span>Hello Again</span></p>
1055          * @result [ <p>Hello</p>, <span>Hello Again</span> ]
1056          *
1057          * @name add
1058          * @type jQuery
1059          * @param String expr An expression whose matched elements are added
1060          * @cat DOM/Traversing
1061          */
1062
1063         /**
1064          * Adds each of the Elements in the array to the set of matched elements.
1065          * This is used to add a set of Elements to a jQuery object.
1066          *
1067          * @example $("p").add([document.getElementById("a"), document.getElementById("b")])
1068          * @before <p>Hello</p><p><span id="a">Hello Again</span><span id="b">And Again</span></p>
1069          * @result [ <p>Hello</p>, <span id="a">Hello Again</span>, <span id="b">And Again</span> ]
1070          *
1071          * @name add
1072          * @type jQuery
1073          * @param Array<Element> els An array of Elements to add
1074          * @cat DOM/Traversing
1075          */
1076
1077         /**
1078          * Adds a single Element to the set of matched elements. This is used to
1079          * add a single Element to a jQuery object.
1080          *
1081          * @example $("p").add( document.getElementById("a") )
1082          * @before <p>Hello</p><p><span id="a">Hello Again</span></p>
1083          * @result [ <p>Hello</p>, <span id="a">Hello Again</span> ]
1084          *
1085          * @name add
1086          * @type jQuery
1087          * @param Element el An Element to add
1088          * @cat DOM/Traversing
1089          */
1090         add: function(t) {
1091                 return this.pushStack( jQuery.merge( this, t.constructor == String ?
1092                         jQuery.find(t) : t.constructor == Array ? t : [t] ), arguments );
1093         },
1094
1095         /**
1096          * Checks the current selection against an expression and returns true,
1097          * if the selection fits the given expression. Does return false, if the
1098          * selection does not fit or the expression is not valid.
1099          *
1100          * @example $("input[@type='checkbox']").parent().is("form")
1101          * @before <form><input type="checkbox" /></form>
1102          * @result true
1103          * @desc Returns true, because the parent of the input is a form element
1104          * 
1105          * @example $("input[@type='checkbox']").parent().is("form")
1106          * @before <form><p><input type="checkbox" /></p></form>
1107          * @result false
1108          * @desc Returns false, because the parent of the input is a p element
1109          *
1110          * @example $("form").is(null)
1111          * @before <form></form>
1112          * @result false
1113          * @desc An invalid expression always returns false.
1114          *
1115          * @test ok( $('#form').is('form'), 'Check for element: A form must be a form' );
1116          * @test ok( !$('#form').is('div'), 'Check for element: A form is not a div' );
1117          * @test ok( $('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
1118          * @test ok( !$('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
1119          * @test ok( $('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
1120          * @test ok( !$('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
1121          * @test ok( $('#en').is('[@lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
1122          * @test ok( !$('#en').is('[@lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
1123          * @test ok( $('#text1').is('[@type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
1124          * @test ok( !$('#text1').is('[@type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
1125          * @test ok( $('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
1126          * @test ok( !$('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
1127          * @test ok( $('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
1128          * @test ok( !$('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
1129          * @test ok( $('#foo').is('[p]'), 'Check for child: Expected a child "p" element' );
1130          * @test ok( !$('#foo').is('[ul]'), 'Check for child: Did not expect "ul" element' );
1131          * @test ok( $('#foo').is('[p][a][code]'), 'Check for childs: Expected "p", "a" and "code" child elements' );
1132          * @test ok( !$('#foo').is('[p][a][code][ol]'), 'Check for childs: Expected "p", "a" and "code" child elements, but no "ol"' );
1133          * @test ok( !$('#foo').is(0), 'Expected false for an invalid expression - 0' );
1134          * @test ok( !$('#foo').is(null), 'Expected false for an invalid expression - null' );
1135          * @test ok( !$('#foo').is(''), 'Expected false for an invalid expression - ""' );
1136          * @test ok( !$('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
1137          *
1138          * @name is
1139          * @type Boolean
1140          * @param String expr The expression with which to filter
1141          * @cat DOM/Traversing
1142          */
1143         is: function(expr) {
1144                 return expr ? jQuery.filter(expr,this).r.length > 0 : false;
1145         },
1146
1147         /**
1148          *
1149          *
1150          * @private
1151          * @name domManip
1152          * @param Array args
1153          * @param Boolean table
1154          * @param Number int
1155          * @param Function fn The function doing the DOM manipulation.
1156          * @type jQuery
1157          * @cat Core
1158          */
1159         domManip: function(args, table, dir, fn){
1160                 var clone = this.size() > 1;
1161                 var a = jQuery.clean(args);
1162
1163                 return this.each(function(){
1164                         var obj = this;
1165
1166                         if ( table && this.nodeName == "TABLE" && a[0].nodeName != "THEAD" ) {
1167                                 var tbody = this.getElementsByTagName("tbody");
1168
1169                                 if ( !tbody.length ) {
1170                                         obj = document.createElement("tbody");
1171                                         this.appendChild( obj );
1172                                 } else
1173                                         obj = tbody[0];
1174                         }
1175
1176                         for ( var i = ( dir < 0 ? a.length - 1 : 0 );
1177                                 i != ( dir < 0 ? dir : a.length ); i += dir ) {
1178                                         fn.apply( obj, [ clone ? a[i].cloneNode(true) : a[i] ] );
1179                         }
1180                 });
1181         },
1182
1183         /**
1184          *
1185          *
1186          * @private
1187          * @name pushStack
1188          * @param Array a
1189          * @param Array args
1190          * @type jQuery
1191          * @cat Core
1192          */
1193         pushStack: function(a,args) {
1194                 var fn = args && args[args.length-1];
1195
1196                 if ( !fn || fn.constructor != Function ) {
1197                         if ( !this.stack ) this.stack = [];
1198                         this.stack.push( this.get() );
1199                         this.get( a );
1200                 } else {
1201                         var old = this.get();
1202                         this.get( a );
1203                         if ( fn.constructor == Function )
1204                                 this.each( fn );
1205                         this.get( old );
1206                 }
1207
1208                 return this;
1209         }
1210 };
1211
1212 /**
1213  *
1214  *
1215  * @private
1216  * @name extend
1217  * @param Object obj
1218  * @type Object
1219  * @cat Core
1220  */
1221
1222 /**
1223  * Extend one object with another, returning the original,
1224  * modified, object. This is a great utility for simple inheritance.
1225  * 
1226  * @example var settings = { validate: false, limit: 5, name: "foo" };
1227  * var options = { validate: true, name: "bar" };
1228  * jQuery.extend(settings, options);
1229  * @result settings == { validate: true, limit: 5, name: "bar" }
1230  *
1231  * @test var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" };
1232  * var options =     { xnumber2: 1, xstring2: "x", xxx: "newstring" };
1233  * var optionsCopy = { xnumber2: 1, xstring2: "x", xxx: "newstring" };
1234  * var merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "x", xxx: "newstring" };
1235  * jQuery.extend(settings, options);
1236  * isSet( settings, merged, "Check if extended: settings must be extended" );
1237  * isSet ( options, optionsCopy, "Check if not modified: options must not be modified" );
1238  *
1239  * @name $.extend
1240  * @param Object obj The object to extend
1241  * @param Object prop The object that will be merged into the first.
1242  * @type Object
1243  * @cat Javascript
1244  */
1245 jQuery.extend = jQuery.fn.extend = function(obj,prop) {
1246         if ( !prop ) { prop = obj; obj = this; }
1247         for ( var i in prop ) obj[i] = prop[i];
1248         return obj;
1249 };
1250
1251 jQuery.extend({
1252         /**
1253          * @private
1254          * @name init
1255          * @type undefined
1256          * @cat Core
1257          */
1258         init: function(){
1259                 jQuery.initDone = true;
1260
1261                 jQuery.each( jQuery.macros.axis, function(i,n){
1262                         jQuery.fn[ i ] = function(a) {
1263                                 var ret = jQuery.map(this,n);
1264                                 if ( a && a.constructor == String )
1265                                         ret = jQuery.filter(a,ret).r;
1266                                 return this.pushStack( ret, arguments );
1267                         };
1268                 });
1269
1270                 jQuery.each( jQuery.macros.to, function(i,n){
1271                         jQuery.fn[ i ] = function(){
1272                                 var a = arguments;
1273                                 return this.each(function(){
1274                                         for ( var j = 0; j < a.length; j++ )
1275                                                 jQuery(a[j])[n]( this );
1276                                 });
1277                         };
1278                 });
1279
1280                 jQuery.each( jQuery.macros.each, function(i,n){
1281                         jQuery.fn[ i ] = function() {
1282                                 return this.each( n, arguments );
1283                         };
1284                 });
1285
1286                 jQuery.each( jQuery.macros.filter, function(i,n){
1287                         jQuery.fn[ n ] = function(num,fn) {
1288                                 return this.filter( ":" + n + "(" + num + ")", fn );
1289                         };
1290                 });
1291
1292                 jQuery.each( jQuery.macros.attr, function(i,n){
1293                         n = n || i;
1294                         jQuery.fn[ i ] = function(h) {
1295                                 return h == undefined ?
1296                                         this.length ? this[0][n] : null :
1297                                         this.attr( n, h );
1298                         };
1299                 });
1300
1301                 jQuery.each( jQuery.macros.css, function(i,n){
1302                         jQuery.fn[ n ] = function(h) {
1303                                 return h == undefined ?
1304                                         ( this.length ? jQuery.css( this[0], n ) : null ) :
1305                                         this.css( n, h );
1306                         };
1307                 });
1308
1309         },
1310
1311         /**
1312          * A generic iterator function, which can be used to seemlessly
1313          * iterate over both objects and arrays. This function is not the same
1314          * as $().each() - which is used to iterate, exclusively, over a jQuery
1315          * object. This function can be used to iterate over anything.
1316          *
1317          * @example $.each( [0,1,2], function(i){
1318          *   alert( "Item #" + i + ": " + this );
1319          * });
1320          * @desc This is an example of iterating over the items in an array, accessing both the current item and its index.
1321          *
1322          * @example $.each( { name: "John", lang: "JS" }, function(i){
1323          *   alert( "Name: " + i + ", Value: " + this );
1324          * });
1325          * @desc This is an example of iterating over the properties in an Object, accessing both the current item and its key.
1326          *
1327          * @name $.each
1328          * @param Object obj The object, or array, to iterate over.
1329          * @param Function fn The function that will be executed on every object.
1330          * @type Object
1331          * @cat Javascript
1332          */
1333         each: function( obj, fn, args ) {
1334                 if ( obj.length == undefined )
1335                         for ( var i in obj )
1336                                 fn.apply( obj[i], args || [i, obj[i]] );
1337                 else
1338                         for ( var i = 0; i < obj.length; i++ )
1339                                 fn.apply( obj[i], args || [i, obj[i]] );
1340                 return obj;
1341         },
1342
1343         className: {
1344                 add: function(o,c){
1345                         if (jQuery.className.has(o,c)) return;
1346                         o.className += ( o.className ? " " : "" ) + c;
1347                 },
1348                 remove: function(o,c){
1349                         o.className = !c ? "" :
1350                                 o.className.replace(
1351                                         new RegExp("(^|\\s*\\b[^-])"+c+"($|\\b(?=[^-]))", "g"), "");
1352                 },
1353                 has: function(e,a) {
1354                         if ( e.className != undefined )
1355                                 e = e.className;
1356                         return new RegExp("(^|\\s)" + a + "(\\s|$)").test(e);
1357                 }
1358         },
1359
1360         /**
1361          * Swap in/out style options.
1362          * @private
1363          */
1364         swap: function(e,o,f) {
1365                 for ( var i in o ) {
1366                         e.style["old"+i] = e.style[i];
1367                         e.style[i] = o[i];
1368                 }
1369                 f.apply( e, [] );
1370                 for ( var i in o )
1371                         e.style[i] = e.style["old"+i];
1372         },
1373
1374         css: function(e,p) {
1375                 if ( p == "height" || p == "width" ) {
1376                         var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"];
1377
1378                         for ( var i in d ) {
1379                                 old["padding" + d[i]] = 0;
1380                                 old["border" + d[i] + "Width"] = 0;
1381                         }
1382
1383                         jQuery.swap( e, old, function() {
1384                                 if (jQuery.css(e,"display") != "none") {
1385                                         oHeight = e.offsetHeight;
1386                                         oWidth = e.offsetWidth;
1387                                 } else {
1388                                         e = jQuery(e.cloneNode(true)).css({
1389                                                 visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0"
1390                                         }).appendTo(e.parentNode)[0];
1391
1392                                         var parPos = jQuery.css(e.parentNode,"position");
1393                                         if ( parPos == "" || parPos == "static" )
1394                                                 e.parentNode.style.position = "relative";
1395
1396                                         oHeight = e.clientHeight;
1397                                         oWidth = e.clientWidth;
1398
1399                                         if ( parPos == "" || parPos == "static" )
1400                                                 e.parentNode.style.position = "static";
1401
1402                                         e.parentNode.removeChild(e);
1403                                 }
1404                         });
1405
1406                         return p == "height" ? oHeight : oWidth;
1407                 } else if ( p == "opacity" && jQuery.browser.msie )
1408                         return parseFloat( jQuery.curCSS(e,"filter").replace(/[^0-9.]/,"") ) || 1;
1409
1410                 return jQuery.curCSS( e, p );
1411         },
1412
1413         curCSS: function(elem, prop, force) {
1414                 var ret;
1415
1416                 if (!force && elem.style[prop]) {
1417
1418                         ret = elem.style[prop];
1419
1420                 } else if (elem.currentStyle) {
1421
1422                         var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});
1423                         ret = elem.currentStyle[prop] || elem.currentStyle[newProp];
1424
1425                 } else if (document.defaultView && document.defaultView.getComputedStyle) {
1426
1427                         prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase();
1428                         var cur = document.defaultView.getComputedStyle(elem, null);
1429
1430                         if ( cur )
1431                                 ret = cur.getPropertyValue(prop);
1432                         else if ( prop == 'display' )
1433                                 ret = 'none';
1434                         else
1435                                 jQuery.swap(elem, { display: 'block' }, function() {
1436                                         ret = document.defaultView.getComputedStyle(this,null).getPropertyValue(prop);
1437                                 });
1438
1439                 }
1440
1441                 return ret;
1442         },
1443
1444         clean: function(a) {
1445                 var r = [];
1446                 for ( var i = 0; i < a.length; i++ ) {
1447                         if ( a[i].constructor == String ) {
1448
1449                                 var table = "";
1450
1451                                 if ( !a[i].indexOf("<thead") || !a[i].indexOf("<tbody") ) {
1452                                         table = "thead";
1453                                         a[i] = "<table>" + a[i] + "</table>";
1454                                 } else if ( !a[i].indexOf("<tr") ) {
1455                                         table = "tr";
1456                                         a[i] = "<table>" + a[i] + "</table>";
1457                                 } else if ( !a[i].indexOf("<td") || !a[i].indexOf("<th") ) {
1458                                         table = "td";
1459                                         a[i] = "<table><tbody><tr>" + a[i] + "</tr></tbody></table>";
1460                                 }
1461
1462                                 var div = document.createElement("div");
1463                                 div.innerHTML = a[i];
1464
1465                                 if ( table ) {
1466                                         div = div.firstChild;
1467                                         if ( table != "thead" ) div = div.firstChild;
1468                                         if ( table == "td" ) div = div.firstChild;
1469                                 }
1470
1471                                 for ( var j = 0; j < div.childNodes.length; j++ )
1472                                         r.push( div.childNodes[j] );
1473                                 } else if ( a[i].jquery || a[i].length && !a[i].nodeType )
1474                                         for ( var k = 0; k < a[i].length; k++ )
1475                                                 r.push( a[i][k] );
1476                                 else if ( a[i] !== null )
1477                                         r.push( a[i].nodeType ? a[i] : document.createTextNode(a[i].toString()) );
1478                 }
1479                 return r;
1480         },
1481
1482         expr: {
1483                 "": "m[2]== '*'||a.nodeName.toUpperCase()==m[2].toUpperCase()",
1484                 "#": "a.getAttribute('id')&&a.getAttribute('id')==m[2]",
1485                 ":": {
1486                         // Position Checks
1487                         lt: "i<m[3]-0",
1488                         gt: "i>m[3]-0",
1489                         nth: "m[3]-0==i",
1490                         eq: "m[3]-0==i",
1491                         first: "i==0",
1492                         last: "i==r.length-1",
1493                         even: "i%2==0",
1494                         odd: "i%2",
1495
1496                         // Child Checks
1497                         "nth-child": "jQuery.sibling(a,m[3]).cur",
1498                         "first-child": "jQuery.sibling(a,0).cur",
1499                         "last-child": "jQuery.sibling(a,0).last",
1500                         "only-child": "jQuery.sibling(a).length==1",
1501
1502                         // Parent Checks
1503                         parent: "a.childNodes.length",
1504                         empty: "!a.childNodes.length",
1505
1506                         // Text Check
1507                         contains: "(a.innerText||a.innerHTML).indexOf(m[3])>=0",
1508
1509                         // Visibility
1510                         visible: "a.type!='hidden'&&jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!='hidden'",
1511                         hidden: "a.type=='hidden'||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')=='hidden'",
1512
1513                         // Form elements
1514                         enabled: "!a.disabled",
1515                         disabled: "a.disabled",
1516                         checked: "a.checked",
1517                         selected: "a.selected"
1518                 },
1519                 ".": "jQuery.className.has(a,m[2])",
1520                 "@": {
1521                         "=": "z==m[4]",
1522                         "!=": "z!=m[4]",
1523                         "^=": "!z.indexOf(m[4])",
1524                         "$=": "z.substr(z.length - m[4].length,m[4].length)==m[4]",
1525                         "*=": "z.indexOf(m[4])>=0",
1526                         "": "z"
1527                 },
1528                 "[": "jQuery.find(m[2],a).length"
1529         },
1530
1531         token: [
1532                 "\\.\\.|/\\.\\.", "a.parentNode",
1533                 ">|/", "jQuery.sibling(a.firstChild)",
1534                 "\\+", "jQuery.sibling(a).next",
1535                 "~", function(a){
1536                         var r = [];
1537                         var s = jQuery.sibling(a);
1538                         if ( s.n > 0 )
1539                                 for ( var i = s.n; i < s.length; i++ )
1540                                         r.push( s[i] );
1541                         return r;
1542                 }
1543         ],
1544
1545         /**
1546          *
1547          * @test t( "Element Selector", "div", ["main","foo"] );
1548          * @test t( "Element Selector", "body", ["body"] );
1549          * @test t( "Element Selector", "html", ["html"] );
1550          * @test cmpOK( $("*").size(), ">=", 30, "Element Selector" );
1551          * @test t( "Parent Element", "div div", ["foo"] );
1552          *
1553          * @test t( "ID Selector", "#body", ["body"] );
1554          * @test t( "ID Selector w/ Element", "body#body", ["body"] );
1555          * @test t( "ID Selector w/ Element", "ul#first", [] );
1556          *
1557          * @test t( "Class Selector", ".blog", ["mark","simon"] );
1558          * @test t( "Class Selector", ".blog.link", ["simon"] );
1559          * @test t( "Class Selector w/ Element", "a.blog", ["mark","simon"] );
1560          * @test t( "Parent Class Selector", "p .blog", ["mark","simon"] );
1561          *
1562          * @test t( "Comma Support", "a.blog, div", ["mark","simon","main","foo"] );
1563          * @test t( "Comma Support", "a.blog , div", ["mark","simon","main","foo"] );
1564          * @test t( "Comma Support", "a.blog ,div", ["mark","simon","main","foo"] );
1565          * @test t( "Comma Support", "a.blog,div", ["mark","simon","main","foo"] );
1566          *
1567          * @test t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
1568          * @test t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
1569          * @test t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
1570          * @test t( "Child", "p>a", ["simon1","google","groups","mark","yahoo","simon"] );
1571          * @test t( "Child w/ Class", "p > a.blog", ["mark","simon"] );
1572          * @test t( "All Children", "code > *", ["anchor1","anchor2"] );
1573          * @test t( "All Grandchildren", "p > * > *", ["anchor1","anchor2"] );
1574          * @test t( "Adjacent", "a + a", ["groups"] );
1575          * @test t( "Adjacent", "a +a", ["groups"] );
1576          * @test t( "Adjacent", "a+ a", ["groups"] );
1577          * @test t( "Adjacent", "a+a", ["groups"] );
1578          * @test t( "Adjacent", "p + p", ["ap","en","sap"] );
1579          * @test t( "Comma, Child, and Adjacent", "a + a, code > a", ["groups","anchor1","anchor2"] );
1580          * @test t( "First Child", "p:first-child", ["firstp","sndp"] );
1581          * @test t( "Attribute Exists", "a[@title]", ["google"] );
1582          * @test t( "Attribute Exists", "*[@title]", ["google"] );
1583          * @test t( "Attribute Exists", "[@title]", ["google"] );
1584          * @test t( "Attribute Equals", "a[@rel='bookmark']", ["simon1"] );
1585          * @test t( "Attribute Equals", 'a[@rel="bookmark"]', ["simon1"] );
1586          * @test t( "Attribute Equals", "a[@rel=bookmark]", ["simon1"] );
1587          * @test t( "Multiple Attribute Equals", "input[@type='hidden'],input[@type='radio']", ["hidden1","radio1","radio2"] );
1588          * @test t( "Multiple Attribute Equals", "input[@type=\"hidden\"],input[@type='radio']", ["hidden1","radio1","radio2"] );
1589          * @test t( "Multiple Attribute Equals", "input[@type=hidden],input[@type=radio]", ["hidden1","radio1","radio2"] );
1590          *
1591          * @test t( "Attribute Begins With", "a[@href ^= 'http://www']", ["google","yahoo"] );
1592          * @test t( "Attribute Ends With", "a[@href $= 'org/']", ["mark"] );
1593          * @test t( "Attribute Contains", "a[@href *= 'google']", ["google","groups"] );
1594          * @test t( "First Child", "p:first-child", ["firstp","sndp"] );
1595          * @test t( "Last Child", "p:last-child", ["sap"] );
1596          * @test t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2"] );
1597          * @test t( "Empty", "ul:empty", ["firstUL"] );
1598          * @test t( "Enabled UI Element", "input:enabled", ["text1","radio1","radio2","check1","check2","hidden1","hidden2","name"] );
1599          * @test t( "Disabled UI Element", "input:disabled", ["text2"] );
1600          * @test t( "Checked UI Element", "input:checked", ["radio2","check1"] );
1601          * @test t( "Selected Option Element", "option:selected", ["option1a","option2d","option3b","option3c"] );
1602          * @test t( "Text Contains", "a:contains('Google')", ["google","groups"] );
1603          * @test t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
1604          * @test t( "Element Preceded By", "p ~ div", ["foo"] );
1605          * @test t( "Not", "a.blog:not(.link)", ["mark"] );
1606          *
1607          * @test cmpOK( jQuery.find("//*").length, ">=", 30, "All Elements (//*)" );
1608          * @test t( "All Div Elements", "//div", ["main","foo"] );
1609          * @test t( "Absolute Path", "/html/body", ["body"] );
1610          * @test t( "Absolute Path w/ *", "/* /body", ["body"] );
1611          * @test t( "Long Absolute Path", "/html/body/dl/div/div/p", ["sndp","en","sap"] );
1612          * @test t( "Absolute and Relative Paths", "/html//div", ["main","foo"] );
1613          * @test t( "All Children, Explicit", "//code/*", ["anchor1","anchor2"] );
1614          * @test t( "All Children, Implicit", "//code/", ["anchor1","anchor2"] );
1615          * @test t( "Attribute Exists", "//a[@title]", ["google"] );
1616          * @test t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );
1617          * @test t( "Parent Axis", "//p/..", ["main","foo"] );
1618          * @test t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","sndp","en","sap"] );
1619          * @test t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","sndp","en","sap"] );
1620          * @test t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] );
1621          *
1622          * @test t( "nth Element", "p:nth(1)", ["ap"] );
1623          * @test t( "First Element", "p:first", ["firstp"] );
1624          * @test t( "Last Element", "p:last", ["first"] );
1625          * @test t( "Even Elements", "p:even", ["firstp","sndp","sap"] );
1626          * @test t( "Odd Elements", "p:odd", ["ap","en","first"] );
1627          * @test t( "Position Equals", "p:eq(1)", ["ap"] );
1628          * @test t( "Position Greater Than", "p:gt(0)", ["ap","sndp","en","sap","first"] );
1629          * @test t( "Position Less Than", "p:lt(3)", ["firstp","ap","sndp"] );
1630          * @test t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
1631          * @test t( "Is Visible", "input:visible", ["text1","text2","radio1","radio2","check1","check2","name"] );
1632          * @test t( "Is Hidden", "input:hidden", ["hidden1","hidden2"] );
1633          *
1634          * @name $.find
1635          * @type Array<Element>
1636          * @private
1637          * @cat Core
1638          */
1639         find: function( t, context ) {
1640                 // Make sure that the context is a DOM Element
1641                 if ( context && context.nodeType == undefined )
1642                         context = null;
1643
1644                 // Set the correct context (if none is provided)
1645                 context = context || jQuery.context || document;
1646
1647                 if ( t.constructor != String ) return [t];
1648
1649                 if ( !t.indexOf("//") ) {
1650                         context = context.documentElement;
1651                         t = t.substr(2,t.length);
1652                 } else if ( !t.indexOf("/") ) {
1653                         context = context.documentElement;
1654                         t = t.substr(1,t.length);
1655                         // FIX Assume the root element is right :(
1656                         if ( t.indexOf("/") >= 1 )
1657                                 t = t.substr(t.indexOf("/"),t.length);
1658                 }
1659
1660                 var ret = [context];
1661                 var done = [];
1662                 var last = null;
1663
1664                 while ( t.length > 0 && last != t ) {
1665                         var r = [];
1666                         last = t;
1667
1668                         t = jQuery.trim(t).replace( /^\/\//i, "" );
1669
1670                         var foundToken = false;
1671
1672                         for ( var i = 0; i < jQuery.token.length; i += 2 ) {
1673                                 if ( foundToken ) continue;
1674
1675                                 var re = new RegExp("^(" + jQuery.token[i] + ")");
1676                                 var m = re.exec(t);
1677
1678                                 if ( m ) {
1679                                         r = ret = jQuery.map( ret, jQuery.token[i+1] );
1680                                         t = jQuery.trim( t.replace( re, "" ) );
1681                                         foundToken = true;
1682                                 }
1683                         }
1684
1685                         if ( !foundToken ) {
1686                                 if ( !t.indexOf(",") || !t.indexOf("|") ) {
1687                                         if ( ret[0] == context ) ret.shift();
1688                                         done = jQuery.merge( done, ret );
1689                                         r = ret = [context];
1690                                         t = " " + t.substr(1,t.length);
1691                                 } else {
1692                                         var re2 = /^([#.]?)([a-z0-9\\*_-]*)/i;
1693                                         var m = re2.exec(t);
1694
1695                                         if ( m[1] == "#" ) {
1696                                                 // Ummm, should make this work in all XML docs
1697                                                 var oid = document.getElementById(m[2]);
1698                                                 r = ret = oid ? [oid] : [];
1699                                                 t = t.replace( re2, "" );
1700                                         } else {
1701                                                 if ( !m[2] || m[1] == "." ) m[2] = "*";
1702
1703                                                 for ( var i = 0; i < ret.length; i++ )
1704                                                         r = jQuery.merge( r,
1705                                                                 m[2] == "*" ?
1706                                                                         jQuery.getAll(ret[i]) :
1707                                                                         ret[i].getElementsByTagName(m[2])
1708                                                         );
1709                                         }
1710                                 }
1711
1712                         }
1713
1714                         if ( t ) {
1715                                 var val = jQuery.filter(t,r);
1716                                 ret = r = val.r;
1717                                 t = jQuery.trim(val.t);
1718                         }
1719                 }
1720
1721                 if ( ret && ret[0] == context ) ret.shift();
1722                 done = jQuery.merge( done, ret );
1723
1724                 return done;
1725         },
1726
1727         getAll: function(o,r) {
1728                 r = r || [];
1729                 var s = o.childNodes;
1730                 for ( var i = 0; i < s.length; i++ )
1731                         if ( s[i].nodeType == 1 ) {
1732                                 r.push( s[i] );
1733                                 jQuery.getAll( s[i], r );
1734                         }
1735                 return r;
1736         },
1737
1738         attr: function(elem, name, value){
1739                 var fix = {
1740                         "for": "htmlFor",
1741                         "class": "className",
1742                         "float": "cssFloat",
1743                         innerHTML: "innerHTML",
1744                         className: "className",
1745                         value: "value",
1746                         disabled: "disabled",
1747                         checked: "checked"
1748                 };
1749
1750                 if ( fix[name] ) {
1751                         if ( value != undefined ) elem[fix[name]] = value;
1752                         return elem[fix[name]];
1753                 } else if ( elem.getAttribute != undefined ) {
1754                         if ( value != undefined ) elem.setAttribute( name, value );
1755                         return elem.getAttribute( name, 2 );
1756                 } else {
1757                         name = name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});
1758                         if ( value != undefined ) elem[name] = value;
1759                         return elem[name];
1760                 }
1761         },
1762
1763         // The regular expressions that power the parsing engine
1764         parse: [
1765                 // Match: [@value='test'], [@foo]
1766                 [ "\\[ *(@)S *([!*$^=]*) *Q\\]", 1 ],
1767
1768                 // Match: [div], [div p]
1769                 [ "(\\[)Q\\]", 0 ],
1770
1771                 // Match: :contains('foo')
1772                 [ "(:)S\\(Q\\)", 0 ],
1773
1774                 // Match: :even, :last-chlid
1775                 [ "([:.#]*)S", 0 ]
1776         ],
1777
1778         filter: function(t,r,not) {
1779                 // Figure out if we're doing regular, or inverse, filtering
1780                 var g = not !== false ? jQuery.grep :
1781                         function(a,f) {return jQuery.grep(a,f,true);};
1782
1783                 while ( t && /^[a-z[({<*:.#]/i.test(t) ) {
1784
1785                         var p = jQuery.parse;
1786
1787                         for ( var i = 0; i < p.length; i++ ) {
1788                                 var re = new RegExp( "^" + p[i][0]
1789
1790                                         // Look for a string-like sequence
1791                                         .replace( 'S', "([a-z*_-][a-z0-9_-]*)" )
1792
1793                                         // Look for something (optionally) enclosed with quotes
1794                                         .replace( 'Q', " *'?\"?([^'\"]*?)'?\"? *" ), "i" );
1795
1796                                 var m = re.exec( t );
1797
1798                                 if ( m ) {
1799                                         // Re-organize the match
1800                                         if ( p[i][1] )
1801                                                 m = ["", m[1], m[3], m[2], m[4]];
1802
1803                                         // Remove what we just matched
1804                                         t = t.replace( re, "" );
1805
1806                                         break;
1807                                 }
1808                         }
1809
1810                         // :not() is a special case that can be optomized by
1811                         // keeping it out of the expression list
1812                         if ( m[1] == ":" && m[2] == "not" )
1813                                 r = jQuery.filter(m[3],r,false).r;
1814
1815                         // Otherwise, find the expression to execute
1816                         else {
1817                                 var f = jQuery.expr[m[1]];
1818                                 if ( f.constructor != String )
1819                                         f = jQuery.expr[m[1]][m[2]];
1820
1821                                 // Build a custom macro to enclose it
1822                                 eval("f = function(a,i){" +
1823                                         ( m[1] == "@" ? "z=jQuery.attr(a,m[3]);" : "" ) +
1824                                         "return " + f + "}");
1825
1826                                 // Execute it against the current filter
1827                                 r = g( r, f );
1828                         }
1829                 }
1830
1831                 // Return an array of filtered elements (r)
1832                 // and the modified expression string (t)
1833                 return { r: r, t: t };
1834         },
1835
1836         /**
1837          * Remove the whitespace from the beginning and end of a string.
1838          *
1839          * @example $.trim("  hello, how are you?  ");
1840          * @result "hello, how are you?"
1841          *
1842          * @name $.trim
1843          * @type String
1844          * @param String str The string to trim.
1845          * @cat Javascript
1846          */
1847         trim: function(t){
1848                 return t.replace(/^\s+|\s+$/g, "");
1849         },
1850
1851         /**
1852          * All ancestors of a given element.
1853          *
1854          * @private
1855          * @name $.parents
1856          * @type Array<Element>
1857          * @param Element elem The element to find the ancestors of.
1858          * @cat DOM/Traversing
1859          */
1860         parents: function( elem ){
1861                 var matched = [];
1862                 var cur = elem.parentNode;
1863                 while ( cur && cur != document ) {
1864                         matched.push( cur );
1865                         cur = cur.parentNode;
1866                 }
1867                 return matched;
1868         },
1869
1870         /**
1871          * All elements on a specified axis.
1872          *
1873          * @private
1874          * @name $.sibling
1875          * @type Array
1876          * @param Element elem The element to find all the siblings of (including itself).
1877          * @cat DOM/Traversing
1878          */
1879         sibling: function(elem, pos, not) {
1880                 var elems = [];
1881
1882                 var siblings = elem.parentNode.childNodes;
1883                 for ( var i = 0; i < siblings.length; i++ ) {
1884                         if ( not === true && siblings[i] == elem ) continue;
1885
1886                         if ( siblings[i].nodeType == 1 )
1887                                 elems.push( siblings[i] );
1888                         if ( siblings[i] == elem )
1889                                 elems.n = elems.length - 1;
1890                 }
1891
1892                 return jQuery.extend( elems, {
1893                         last: elems.n == elems.length - 1,
1894                         cur: pos == "even" && elems.n % 2 == 0 || pos == "odd" && elems.n % 2 || elems[pos] == elem,
1895                         prev: elems[elems.n - 1],
1896                         next: elems[elems.n + 1]
1897                 });
1898         },
1899
1900         /**
1901          * Merge two arrays together, removing all duplicates. The final order
1902          * or the new array is: All the results from the first array, followed
1903          * by the unique results from the second array.
1904          *
1905          * @example $.merge( [0,1,2], [2,3,4] )
1906          * @result [0,1,2,3,4]
1907          *
1908          * @example $.merge( [3,2,1], [4,3,2] )
1909          * @result [3,2,1,4]
1910          *
1911          * @name $.merge
1912          * @type Array
1913          * @param Array first The first array to merge.
1914          * @param Array second The second array to merge.
1915          * @cat Javascript
1916          */
1917         merge: function(first, second) {
1918                 var result = [];
1919
1920                 // Move b over to the new array (this helps to avoid
1921                 // StaticNodeList instances)
1922                 for ( var k = 0; k < first.length; k++ )
1923                         result[k] = first[k];
1924
1925                 // Now check for duplicates between a and b and only
1926                 // add the unique items
1927                 for ( var i = 0; i < second.length; i++ ) {
1928                         var noCollision = true;
1929
1930                         // The collision-checking process
1931                         for ( var j = 0; j < first.length; j++ )
1932                                 if ( second[i] == first[j] )
1933                                         noCollision = false;
1934
1935                         // If the item is unique, add it
1936                         if ( noCollision )
1937                                 result.push( second[i] );
1938                 }
1939
1940                 return result;
1941         },
1942
1943         /**
1944          * Filter items out of an array, by using a filter function.
1945          * The specified function will be passed two arguments: The
1946          * current array item and the index of the item in the array. The
1947          * function should return 'true' if you wish to keep the item in
1948          * the array, false if it should be removed.
1949          *
1950          * @example $.grep( [0,1,2], function(i){
1951          *   return i > 0;
1952          * });
1953          * @result [1, 2]
1954          *
1955          * @name $.grep
1956          * @type Array
1957          * @param Array array The Array to find items in.
1958          * @param Function fn The function to process each item against.
1959          * @param Boolean inv Invert the selection - select the opposite of the function.
1960          * @cat Javascript
1961          */
1962         grep: function(elems, fn, inv) {
1963                 // If a string is passed in for the function, make a function
1964                 // for it (a handy shortcut)
1965                 if ( fn.constructor == String )
1966                         fn = new Function("a","i","return " + fn);
1967
1968                 var result = [];
1969
1970                 // Go through the array, only saving the items
1971                 // that pass the validator function
1972                 for ( var i = 0; i < elems.length; i++ )
1973                         if ( !inv && fn(elems[i],i) || inv && !fn(elems[i],i) )
1974                                 result.push( elems[i] );
1975
1976                 return result;
1977         },
1978
1979         /**
1980          * Translate all items in an array to another array of items. 
1981          * The translation function that is provided to this method is 
1982          * called for each item in the array and is passed one argument: 
1983          * The item to be translated. The function can then return:
1984          * The translated value, 'null' (to remove the item), or 
1985          * an array of values - which will be flattened into the full array.
1986          *
1987          * @example $.map( [0,1,2], function(i){
1988          *   return i + 4;
1989          * });
1990          * @result [4, 5, 6]
1991          *
1992          * @example $.map( [0,1,2], function(i){
1993          *   return i > 0 ? i + 1 : null;
1994          * });
1995          * @result [2, 3]
1996          * 
1997          * @example $.map( [0,1,2], function(i){
1998          *   return [ i, i + 1 ];
1999          * });
2000          * @result [0, 1, 1, 2, 2, 3]
2001          *
2002          * @name $.map
2003          * @type Array
2004          * @param Array array The Array to translate.
2005          * @param Function fn The function to process each item against.
2006          * @cat Javascript
2007          */
2008         map: function(elems, fn) {
2009                 // If a string is passed in for the function, make a function
2010                 // for it (a handy shortcut)
2011                 if ( fn.constructor == String )
2012                         fn = new Function("a","return " + fn);
2013
2014                 var result = [];
2015
2016                 // Go through the array, translating each of the items to their
2017                 // new value (or values).
2018                 for ( var i = 0; i < elems.length; i++ ) {
2019                         var val = fn(elems[i],i);
2020
2021                         if ( val !== null && val != undefined ) {
2022                                 if ( val.constructor != Array ) val = [val];
2023                                 result = jQuery.merge( result, val );
2024                         }
2025                 }
2026
2027                 return result;
2028         },
2029
2030         /*
2031          * A number of helper functions used for managing events.
2032          * Many of the ideas behind this code orignated from Dean Edwards' addEvent library.
2033          */
2034         event: {
2035
2036                 // Bind an event to an element
2037                 // Original by Dean Edwards
2038                 add: function(element, type, handler) {
2039                         // For whatever reason, IE has trouble passing the window object
2040                         // around, causing it to be cloned in the process
2041                         if ( jQuery.browser.msie && element.setInterval != undefined )
2042                                 element = window;
2043
2044                         // Make sure that the function being executed has a unique ID
2045                         if ( !handler.guid )
2046                                 handler.guid = this.guid++;
2047
2048                         // Init the element's event structure
2049                         if (!element.events)
2050                                 element.events = {};
2051
2052                         // Get the current list of functions bound to this event
2053                         var handlers = element.events[type];
2054
2055                         // If it hasn't been initialized yet
2056                         if (!handlers) {
2057                                 // Init the event handler queue
2058                                 handlers = element.events[type] = {};
2059
2060                                 // Remember an existing handler, if it's already there
2061                                 if (element["on" + type])
2062                                         handlers[0] = element["on" + type];
2063                         }
2064
2065                         // Add the function to the element's handler list
2066                         handlers[handler.guid] = handler;
2067
2068                         // And bind the global event handler to the element
2069                         element["on" + type] = this.handle;
2070
2071                         // Remember the function in a global list (for triggering)
2072                         if (!this.global[type])
2073                                 this.global[type] = [];
2074                         this.global[type].push( element );
2075                 },
2076
2077                 guid: 1,
2078                 global: {},
2079
2080                 // Detach an event or set of events from an element
2081                 remove: function(element, type, handler) {
2082                         if (element.events)
2083                                 if (type && element.events[type])
2084                                         if ( handler )
2085                                                 delete element.events[type][handler.guid];
2086                                         else
2087                                                 for ( var i in element.events[type] )
2088                                                         delete element.events[type][i];
2089                                 else
2090                                         for ( var j in element.events )
2091                                                 this.remove( element, j );
2092                 },
2093
2094                 trigger: function(type,data,element) {
2095                         // Touch up the incoming data
2096                         data = data || [];
2097
2098                         // Handle a global trigger
2099                         if ( !element ) {
2100                                 var g = this.global[type];
2101                                 if ( g )
2102                                         for ( var i = 0; i < g.length; i++ )
2103                                                 this.trigger( type, data, g[i] );
2104
2105                         // Handle triggering a single element
2106                         } else if ( element["on" + type] ) {
2107                                 // Pass along a fake event
2108                                 data.unshift( this.fix({ type: type, target: element }) );
2109
2110                                 // Trigger the event
2111                                 element["on" + type].apply( element, data );
2112                         }
2113                 },
2114
2115                 handle: function(event) {
2116                         if ( typeof jQuery == "undefined" ) return;
2117
2118                         event = event || jQuery.event.fix( window.event );
2119
2120                         // If no correct event was found, fail
2121                         if ( !event ) return;
2122
2123                         var returnValue = true;
2124
2125                         var c = this.events[event.type];
2126
2127                         for ( var j in c ) {
2128                                 if ( c[j].apply( this, [event] ) === false ) {
2129                                         event.preventDefault();
2130                                         event.stopPropagation();
2131                                         returnValue = false;
2132                                 }
2133                         }
2134
2135                         return returnValue;
2136                 },
2137
2138                 fix: function(event) {
2139                         if ( event ) {
2140                                 event.preventDefault = function() {
2141                                         this.returnValue = false;
2142                                 };
2143
2144                                 event.stopPropagation = function() {
2145                                         this.cancelBubble = true;
2146                                 };
2147                         }
2148
2149                         return event;
2150                 }
2151
2152         }
2153 });
2154
2155 new function() {
2156         var b = navigator.userAgent.toLowerCase();
2157
2158         // Figure out what browser is being used
2159         jQuery.browser = {
2160                 safari: /webkit/.test(b),
2161                 opera: /opera/.test(b),
2162                 msie: /msie/.test(b) && !/opera/.test(b),
2163                 mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b)
2164         };
2165
2166         // Check to see if the W3C box model is being used
2167         jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
2168 };
2169
2170 jQuery.macros = {
2171         to: {
2172                 /**
2173                  * Append all of the matched elements to another, specified, set of elements.
2174                  * This operation is, essentially, the reverse of doing a regular
2175                  * $(A).append(B), in that instead of appending B to A, you're appending
2176                  * A to B.
2177                  *
2178                  * @example $("p").appendTo("#foo");
2179                  * @before <p>I would like to say: </p><div id="foo"></div>
2180                  * @result <div id="foo"><p>I would like to say: </p></div>
2181                  *
2182                  * @name appendTo
2183                  * @type jQuery
2184                  * @param String expr A jQuery expression of elements to match.
2185                  * @cat DOM/Manipulation
2186                  */
2187                 appendTo: "append",
2188
2189                 /**
2190                  * Prepend all of the matched elements to another, specified, set of elements.
2191                  * This operation is, essentially, the reverse of doing a regular
2192                  * $(A).prepend(B), in that instead of prepending B to A, you're prepending
2193                  * A to B.
2194                  *
2195                  * @example $("p").prependTo("#foo");
2196                  * @before <p>I would like to say: </p><div id="foo"><b>Hello</b></div>
2197                  * @result <div id="foo"><p>I would like to say: </p><b>Hello</b></div>
2198                  *
2199                  * @name prependTo
2200                  * @type jQuery
2201                  * @param String expr A jQuery expression of elements to match.
2202                  * @cat DOM/Manipulation
2203                  */
2204                 prependTo: "prepend",
2205
2206                 /**
2207                  * Insert all of the matched elements before another, specified, set of elements.
2208                  * This operation is, essentially, the reverse of doing a regular
2209                  * $(A).before(B), in that instead of inserting B before A, you're inserting
2210                  * A before B.
2211                  *
2212                  * @example $("p").insertBefore("#foo");
2213                  * @before <div id="foo">Hello</div><p>I would like to say: </p>
2214                  * @result <p>I would like to say: </p><div id="foo">Hello</div>
2215                  *
2216                  * @name insertBefore
2217                  * @type jQuery
2218                  * @param String expr A jQuery expression of elements to match.
2219                  * @cat DOM/Manipulation
2220                  */
2221                 insertBefore: "before",
2222
2223                 /**
2224                  * Insert all of the matched elements after another, specified, set of elements.
2225                  * This operation is, essentially, the reverse of doing a regular
2226                  * $(A).after(B), in that instead of inserting B after A, you're inserting
2227                  * A after B.
2228                  *
2229                  * @example $("p").insertAfter("#foo");
2230                  * @before <p>I would like to say: </p><div id="foo">Hello</div>
2231                  * @result <div id="foo">Hello</div><p>I would like to say: </p>
2232                  *
2233                  * @name insertAfter
2234                  * @type jQuery
2235                  * @param String expr A jQuery expression of elements to match.
2236                  * @cat DOM/Manipulation
2237                  */
2238                 insertAfter: "after"
2239         },
2240
2241         /**
2242          * Get the current CSS width of the first matched element.
2243          *
2244          * @example $("p").width();
2245          * @before <p>This is just a test.</p>
2246          * @result "300px"
2247          *
2248          * @name width
2249          * @type String
2250          * @cat CSS
2251          */
2252
2253         /**
2254          * Set the CSS width of every matched element. Be sure to include
2255          * the "px" (or other unit of measurement) after the number that you
2256          * specify, otherwise you might get strange results.
2257          *
2258          * @example $("p").width("20px");
2259          * @before <p>This is just a test.</p>
2260          * @result <p style="width:20px;">This is just a test.</p>
2261          *
2262          * @name width
2263          * @type jQuery
2264          * @param String val Set the CSS property to the specified value.
2265          * @cat CSS
2266          */
2267
2268         /**
2269          * Get the current CSS height of the first matched element.
2270          *
2271          * @example $("p").height();
2272          * @before <p>This is just a test.</p>
2273          * @result "14px"
2274          *
2275          * @name height
2276          * @type String
2277          * @cat CSS
2278          */
2279
2280         /**
2281          * Set the CSS height of every matched element. Be sure to include
2282          * the "px" (or other unit of measurement) after the number that you
2283          * specify, otherwise you might get strange results.
2284          *
2285          * @example $("p").height("20px");
2286          * @before <p>This is just a test.</p>
2287          * @result <p style="height:20px;">This is just a test.</p>
2288          *
2289          * @name height
2290          * @type jQuery
2291          * @param String val Set the CSS property to the specified value.
2292          * @cat CSS
2293          */
2294
2295         /**
2296          * Get the current CSS top of the first matched element.
2297          *
2298          * @example $("p").top();
2299          * @before <p>This is just a test.</p>
2300          * @result "0px"
2301          *
2302          * @name top
2303          * @type String
2304          * @cat CSS
2305          */
2306
2307         /**
2308          * Set the CSS top of every matched element. Be sure to include
2309          * the "px" (or other unit of measurement) after the number that you
2310          * specify, otherwise you might get strange results.
2311          *
2312          * @example $("p").top("20px");
2313          * @before <p>This is just a test.</p>
2314          * @result <p style="top:20px;">This is just a test.</p>
2315          *
2316          * @name top
2317          * @type jQuery
2318          * @param String val Set the CSS property to the specified value.
2319          * @cat CSS
2320          */
2321
2322         /**
2323          * Get the current CSS left of the first matched element.
2324          *
2325          * @example $("p").left();
2326          * @before <p>This is just a test.</p>
2327          * @result "0px"
2328          *
2329          * @name left
2330          * @type String
2331          * @cat CSS
2332          */
2333
2334         /**
2335          * Set the CSS left of every matched element. Be sure to include
2336          * the "px" (or other unit of measurement) after the number that you
2337          * specify, otherwise you might get strange results.
2338          *
2339          * @example $("p").left("20px");
2340          * @before <p>This is just a test.</p>
2341          * @result <p style="left:20px;">This is just a test.</p>
2342          *
2343          * @name left
2344          * @type jQuery
2345          * @param String val Set the CSS property to the specified value.
2346          * @cat CSS
2347          */
2348
2349         /**
2350          * Get the current CSS position of the first matched element.
2351          *
2352          * @example $("p").position();
2353          * @before <p>This is just a test.</p>
2354          * @result "static"
2355          *
2356          * @name position
2357          * @type String
2358          * @cat CSS
2359          */
2360
2361         /**
2362          * Set the CSS position of every matched element.
2363          *
2364          * @example $("p").position("relative");
2365          * @before <p>This is just a test.</p>
2366          * @result <p style="position:relative;">This is just a test.</p>
2367          *
2368          * @name position
2369          * @type jQuery
2370          * @param String val Set the CSS property to the specified value.
2371          * @cat CSS
2372          */
2373
2374         /**
2375          * Get the current CSS float of the first matched element.
2376          *
2377          * @example $("p").float();
2378          * @before <p>This is just a test.</p>
2379          * @result "none"
2380          *
2381          * @name float
2382          * @type String
2383          * @cat CSS
2384          */
2385
2386         /**
2387          * Set the CSS float of every matched element.
2388          *
2389          * @example $("p").float("left");
2390          * @before <p>This is just a test.</p>
2391          * @result <p style="float:left;">This is just a test.</p>
2392          *
2393          * @name float
2394          * @type jQuery
2395          * @param String val Set the CSS property to the specified value.
2396          * @cat CSS
2397          */
2398
2399         /**
2400          * Get the current CSS overflow of the first matched element.
2401          *
2402          * @example $("p").overflow();
2403          * @before <p>This is just a test.</p>
2404          * @result "none"
2405          *
2406          * @name overflow
2407          * @type String
2408          * @cat CSS
2409          */
2410
2411         /**
2412          * Set the CSS overflow of every matched element.
2413          *
2414          * @example $("p").overflow("auto");
2415          * @before <p>This is just a test.</p>
2416          * @result <p style="overflow:auto;">This is just a test.</p>
2417          *
2418          * @name overflow
2419          * @type jQuery
2420          * @param String val Set the CSS property to the specified value.
2421          * @cat CSS
2422          */
2423
2424         /**
2425          * Get the current CSS color of the first matched element.
2426          *
2427          * @example $("p").color();
2428          * @before <p>This is just a test.</p>
2429          * @result "black"
2430          *
2431          * @name color
2432          * @type String
2433          * @cat CSS
2434          */
2435
2436         /**
2437          * Set the CSS color of every matched element.
2438          *
2439          * @example $("p").color("blue");
2440          * @before <p>This is just a test.</p>
2441          * @result <p style="color:blue;">This is just a test.</p>
2442          *
2443          * @name color
2444          * @type jQuery
2445          * @param String val Set the CSS property to the specified value.
2446          * @cat CSS
2447          */
2448
2449         /**
2450          * Get the current CSS background of the first matched element.
2451          *
2452          * @example $("p").background();
2453          * @before <p style="background:blue;">This is just a test.</p>
2454          * @result "blue"
2455          *
2456          * @name background
2457          * @type String
2458          * @cat CSS
2459          */
2460
2461         /**
2462          * Set the CSS background of every matched element.
2463          *
2464          * @example $("p").background("blue");
2465          * @before <p>This is just a test.</p>
2466          * @result <p style="background:blue;">This is just a test.</p>
2467          *
2468          * @name background
2469          * @type jQuery
2470          * @param String val Set the CSS property to the specified value.
2471          * @cat CSS
2472          */
2473
2474         css: "width,height,top,left,position,float,overflow,color,background".split(","),
2475
2476         /**
2477          * Reduce the set of matched elements to a single element.
2478          * The position of the element in the set of matched elements
2479          * starts at 0 and goes to length - 1.
2480          *
2481          * @example $("p").eq(1)
2482          * @before <p>This is just a test.</p><p>So is this</p>
2483          * @result [ <p>So is this</p> ]
2484          *
2485          * @name eq
2486          * @type jQuery
2487          * @param Number pos The index of the element that you wish to limit to.
2488          * @cat Core
2489          */
2490
2491         /**
2492          * Reduce the set of matched elements to all elements before a given position.
2493          * The position of the element in the set of matched elements
2494          * starts at 0 and goes to length - 1.
2495          *
2496          * @example $("p").lt(1)
2497          * @before <p>This is just a test.</p><p>So is this</p>
2498          * @result [ <p>This is just a test.</p> ]
2499          *
2500          * @name lt
2501          * @type jQuery
2502          * @param Number pos Reduce the set to all elements below this position.
2503          * @cat Core
2504          */
2505
2506         /**
2507          * Reduce the set of matched elements to all elements after a given position.
2508          * The position of the element in the set of matched elements
2509          * starts at 0 and goes to length - 1.
2510          *
2511          * @example $("p").gt(0)
2512          * @before <p>This is just a test.</p><p>So is this</p>
2513          * @result [ <p>So is this</p> ]
2514          *
2515          * @name gt
2516          * @type jQuery
2517          * @param Number pos Reduce the set to all elements after this position.
2518          * @cat Core
2519          */
2520
2521         /**
2522          * Filter the set of elements to those that contain the specified text.
2523          *
2524          * @example $("p").contains("test")
2525          * @before <p>This is just a test.</p><p>So is this</p>
2526          * @result [ <p>This is just a test.</p> ]
2527          *
2528          * @name contains
2529          * @type jQuery
2530          * @param String str The string that will be contained within the text of an element.
2531          * @cat DOM/Traversing
2532          */
2533
2534         filter: [ "eq", "lt", "gt", "contains" ],
2535
2536         attr: {
2537                 /**
2538                  * Get the current value of the first matched element.
2539                  *
2540                  * @example $("input").val();
2541                  * @before <input type="text" value="some text"/>
2542                  * @result "some text"
2543                  *
2544                  * @test ok( $("#text1").val() == "Test", "Check for value of input element" );
2545                  * @test ok( !$("#text1").val() == "", "Check for value of input element" );
2546                  *
2547                  * @name val
2548                  * @type String
2549                  * @cat DOM/Attributes
2550                  */
2551
2552                 /**
2553                  * Set the value of every matched element.
2554                  *
2555                  * @example $("input").value("test");
2556                  * @before <input type="text" value="some text"/>
2557                  * @result <input type="text" value="test"/>
2558                  *
2559                  * @test document.getElementById('text1').value = "bla";
2560                  * ok( $("#text1").val() == "bla", "Check for modified value of input element" );
2561                  * $("#text1").val('test');
2562                  * ok ( document.getElementById('text1').value == "test", "Check for modified (via val(String)) value of input element" );
2563                  *
2564                  * @name val
2565                  * @type jQuery
2566                  * @param String val Set the property to the specified value.
2567                  * @cat DOM/Attributes
2568                  */
2569                 val: "value",
2570
2571                 /**
2572                  * Get the html contents of the first matched element.
2573                  *
2574                  * @example $("div").html();
2575                  * @before <div><input/></div>
2576                  * @result <input/>
2577                  *
2578                  * @name html
2579                  * @type String
2580                  * @cat DOM/Attributes
2581                  */
2582
2583                 /**
2584                  * Set the html contents of every matched element.
2585                  *
2586                  * @example $("div").html("<b>new stuff</b>");
2587                  * @before <div><input/></div>
2588                  * @result <div><b>new stuff</b></div>
2589                  *
2590                  * @test var div = $("div");
2591                  * div.html("<b>test</b>");
2592                  * var pass = true;
2593                  * for ( var i = 0; i < div.size(); i++ ) {
2594                  *   if ( div.get(i).childNodes.length == 0 ) pass = false;
2595                  * }
2596                  * ok( pass, "Set HTML" );
2597                  *
2598                  * @name html
2599                  * @type jQuery
2600                  * @param String val Set the html contents to the specified value.
2601                  * @cat DOM/Attributes
2602                  */
2603                 html: "innerHTML",
2604
2605                 /**
2606                  * Get the current id of the first matched element.
2607                  *
2608                  * @example $("input").id();
2609                  * @before <input type="text" id="test" value="some text"/>
2610                  * @result "test"
2611                  *
2612                  * @name id
2613                  * @type String
2614                  * @cat DOM/Attributes
2615                  */
2616
2617                 /**
2618                  * Set the id of every matched element.
2619                  *
2620                  * @example $("input").id("newid");
2621                  * @before <input type="text" id="test" value="some text"/>
2622                  * @result <input type="text" id="newid" value="some text"/>
2623                  *
2624                  * @name id
2625                  * @type jQuery
2626                  * @param String val Set the property to the specified value.
2627                  * @cat DOM/Attributes
2628                  */
2629                 id: null,
2630
2631                 /**
2632                  * Get the current title of the first matched element.
2633                  *
2634                  * @example $("img").title();
2635                  * @before <img src="test.jpg" title="my image"/>
2636                  * @result "my image"
2637                  *
2638                  * @name title
2639                  * @type String
2640                  * @cat DOM/Attributes
2641                  */
2642
2643                 /**
2644                  * Set the title of every matched element.
2645                  *
2646                  * @example $("img").title("new title");
2647                  * @before <img src="test.jpg" title="my image"/>
2648                  * @result <img src="test.jpg" title="new image"/>
2649                  *
2650                  * @name title
2651                  * @type jQuery
2652                  * @param String val Set the property to the specified value.
2653                  * @cat DOM/Attributes
2654                  */
2655                 title: null,
2656
2657                 /**
2658                  * Get the current name of the first matched element.
2659                  *
2660                  * @example $("input").name();
2661                  * @before <input type="text" name="username"/>
2662                  * @result "username"
2663                  *
2664                  * @name name
2665                  * @type String
2666                  * @cat DOM/Attributes
2667                  */
2668
2669                 /**
2670                  * Set the name of every matched element.
2671                  *
2672                  * @example $("input").name("user");
2673                  * @before <input type="text" name="username"/>
2674                  * @result <input type="text" name="user"/>
2675                  *
2676                  * @name name
2677                  * @type jQuery
2678                  * @param String val Set the property to the specified value.
2679                  * @cat DOM/Attributes
2680                  */
2681                 name: null,
2682
2683                 /**
2684                  * Get the current href of the first matched element.
2685                  *
2686                  * @example $("a").href();
2687                  * @before <a href="test.html">my link</a>
2688                  * @result "test.html"
2689                  *
2690                  * @name href
2691                  * @type String
2692                  * @cat DOM/Attributes
2693                  */
2694
2695                 /**
2696                  * Set the href of every matched element.
2697                  *
2698                  * @example $("a").href("test2.html");
2699                  * @before <a href="test.html">my link</a>
2700                  * @result <a href="test2.html">my link</a>
2701                  *
2702                  * @name href
2703                  * @type jQuery
2704                  * @param String val Set the property to the specified value.
2705                  * @cat DOM/Attributes
2706                  */
2707                 href: null,
2708
2709                 /**
2710                  * Get the current src of the first matched element.
2711                  *
2712                  * @example $("img").src();
2713                  * @before <img src="test.jpg" title="my image"/>
2714                  * @result "test.jpg"
2715                  *
2716                  * @name src
2717                  * @type String
2718                  * @cat DOM/Attributes
2719                  */
2720
2721                 /**
2722                  * Set the src of every matched element.
2723                  *
2724                  * @example $("img").src("test2.jpg");
2725                  * @before <img src="test.jpg" title="my image"/>
2726                  * @result <img src="test2.jpg" title="my image"/>
2727                  *
2728                  * @name src
2729                  * @type jQuery
2730                  * @param String val Set the property to the specified value.
2731                  * @cat DOM/Attributes
2732                  */
2733                 src: null,
2734
2735                 /**
2736                  * Get the current rel of the first matched element.
2737                  *
2738                  * @example $("a").rel();
2739                  * @before <a href="test.html" rel="nofollow">my link</a>
2740                  * @result "nofollow"
2741                  *
2742                  * @name rel
2743                  * @type String
2744                  * @cat DOM/Attributes
2745                  */
2746
2747                 /**
2748                  * Set the rel of every matched element.
2749                  *
2750                  * @example $("a").rel("nofollow");
2751                  * @before <a href="test.html">my link</a>
2752                  * @result <a href="test.html" rel="nofollow">my link</a>
2753                  *
2754                  * @name rel
2755                  * @type jQuery
2756                  * @param String val Set the property to the specified value.
2757                  * @cat DOM/Attributes
2758                  */
2759                 rel: null
2760         },
2761
2762         axis: {
2763                 /**
2764                  * Get a set of elements containing the unique parents of the matched
2765                  * set of elements.
2766                  *
2767                  * @example $("p").parent()
2768                  * @before <div><p>Hello</p><p>Hello</p></div>
2769                  * @result [ <div><p>Hello</p><p>Hello</p></div> ]
2770                  *
2771                  * @name parent
2772                  * @type jQuery
2773                  * @cat DOM/Traversing
2774                  */
2775
2776                 /**
2777                  * Get a set of elements containing the unique parents of the matched
2778                  * set of elements, and filtered by an expression.
2779                  *
2780                  * @example $("p").parent(".selected")
2781                  * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
2782                  * @result [ <div class="selected"><p>Hello Again</p></div> ]
2783                  *
2784                  * @name parent
2785                  * @type jQuery
2786                  * @param String expr An expression to filter the parents with
2787                  * @cat DOM/Traversing
2788                  */
2789                 parent: "a.parentNode",
2790
2791                 /**
2792                  * Get a set of elements containing the unique ancestors of the matched
2793                  * set of elements (except for the root element).
2794                  *
2795                  * @example $("span").ancestors()
2796                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2797                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2798                  *
2799                  * @name ancestors
2800                  * @type jQuery
2801                  * @cat DOM/Traversing
2802                  */
2803
2804                 /**
2805                  * Get a set of elements containing the unique ancestors of the matched
2806                  * set of elements, and filtered by an expression.
2807                  *
2808                  * @example $("span").ancestors("p")
2809                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2810                  * @result [ <p><span>Hello</span></p> ]
2811                  *
2812                  * @name ancestors
2813                  * @type jQuery
2814                  * @param String expr An expression to filter the ancestors with
2815                  * @cat DOM/Traversing
2816                  */
2817                 ancestors: jQuery.parents,
2818
2819                 /**
2820                  * Get a set of elements containing the unique ancestors of the matched
2821                  * set of elements (except for the root element).
2822                  *
2823                  * @example $("span").ancestors()
2824                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2825                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2826                  *
2827                  * @name parents
2828                  * @type jQuery
2829                  * @cat DOM/Traversing
2830                  */
2831
2832                 /**
2833                  * Get a set of elements containing the unique ancestors of the matched
2834                  * set of elements, and filtered by an expression.
2835                  *
2836                  * @example $("span").ancestors("p")
2837                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2838                  * @result [ <p><span>Hello</span></p> ]
2839                  *
2840                  * @name parents
2841                  * @type jQuery
2842                  * @param String expr An expression to filter the ancestors with
2843                  * @cat DOM/Traversing
2844                  */
2845                 parents: jQuery.parents,
2846
2847                 /**
2848                  * Get a set of elements containing the unique next siblings of each of the
2849                  * matched set of elements.
2850                  *
2851                  * It only returns the very next sibling, not all next siblings.
2852                  *
2853                  * @example $("p").next()
2854                  * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
2855                  * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
2856                  *
2857                  * @name next
2858                  * @type jQuery
2859                  * @cat DOM/Traversing
2860                  */
2861
2862                 /**
2863                  * Get a set of elements containing the unique next siblings of each of the
2864                  * matched set of elements, and filtered by an expression.
2865                  *
2866                  * It only returns the very next sibling, not all next siblings.
2867                  *
2868                  * @example $("p").next(".selected")
2869                  * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
2870                  * @result [ <p class="selected">Hello Again</p> ]
2871                  *
2872                  * @name next
2873                  * @type jQuery
2874                  * @param String expr An expression to filter the next Elements with
2875                  * @cat DOM/Traversing
2876                  */
2877                 next: "jQuery.sibling(a).next",
2878
2879                 /**
2880                  * Get a set of elements containing the unique previous siblings of each of the
2881                  * matched set of elements.
2882                  *
2883                  * It only returns the immediately previous sibling, not all previous siblings.
2884                  *
2885                  * @example $("p").previous()
2886                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2887                  * @result [ <div><span>Hello Again</span></div> ]
2888                  *
2889                  * @name prev
2890                  * @type jQuery
2891                  * @cat DOM/Traversing
2892                  */
2893
2894                 /**
2895                  * Get a set of elements containing the unique previous siblings of each of the
2896                  * matched set of elements, and filtered by an expression.
2897                  *
2898                  * It only returns the immediately previous sibling, not all previous siblings.
2899                  *
2900                  * @example $("p").previous(".selected")
2901                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2902                  * @result [ <div><span>Hello</span></div> ]
2903                  *
2904                  * @name prev
2905                  * @type jQuery
2906                  * @param String expr An expression to filter the previous Elements with
2907                  * @cat DOM/Traversing
2908                  */
2909                 prev: "jQuery.sibling(a).prev",
2910
2911                 /**
2912                  * Get a set of elements containing all of the unique siblings of each of the
2913                  * matched set of elements.
2914                  *
2915                  * @example $("div").siblings()
2916                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2917                  * @result [ <p>Hello</p>, <p>And Again</p> ]
2918                  *
2919                  * @name siblings
2920                  * @type jQuery
2921                  * @cat DOM/Traversing
2922                  */
2923
2924                 /**
2925                  * Get a set of elements containing all of the unique siblings of each of the
2926                  * matched set of elements, and filtered by an expression.
2927                  *
2928                  * @example $("div").siblings(".selected")
2929                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2930                  * @result [ <p class="selected">Hello Again</p> ]
2931                  *
2932                  * @name siblings
2933                  * @type jQuery
2934                  * @param String expr An expression to filter the sibling Elements with
2935                  * @cat DOM/Traversing
2936                  */
2937                 siblings: jQuery.sibling,
2938
2939
2940                 /**
2941                  * Get a set of elements containing all of the unique children of each of the
2942                  * matched set of elements.
2943                  *
2944                  * @example $("div").children()
2945                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2946                  * @result [ <span>Hello Again</span> ]
2947                  *
2948                  * @name children
2949                  * @type jQuery
2950                  * @cat DOM/Traversing
2951                  */
2952
2953                 /**
2954                  * Get a set of elements containing all of the unique children of each of the
2955                  * matched set of elements, and filtered by an expression.
2956                  *
2957                  * @example $("div").children(".selected")
2958                  * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div>
2959                  * @result [ <p class="selected">Hello Again</p> ]
2960                  *
2961                  * @name children
2962                  * @type jQuery
2963                  * @param String expr An expression to filter the child Elements with
2964                  * @cat DOM/Traversing
2965                  */
2966                 children: "jQuery.sibling(a.firstChild)"
2967         },
2968
2969         each: {
2970
2971                 /**
2972                  * Remove an attribute from each of the matched elements.
2973                  *
2974                  * @example $("input").removeAttr("disabled")
2975                  * @before <input disabled="disabled"/>
2976                  * @result <input/>
2977                  *
2978                  * @name removeAttr
2979                  * @type jQuery
2980                  * @param String name The name of the attribute to remove.
2981                  * @cat DOM
2982                  */
2983                 removeAttr: function( key ) {
2984                         this.removeAttribute( key );
2985                 },
2986
2987                 /**
2988                  * Displays each of the set of matched elements if they are hidden.
2989                  *
2990                  * @example $("p").show()
2991                  * @before <p style="display: none">Hello</p>
2992                  * @result [ <p style="display: block">Hello</p> ]
2993                  *
2994                  * @test var pass = true, div = $("div");
2995                  * div.show().each(function(){
2996                  *   if ( this.style.display == "none" ) pass = false;
2997                  * });
2998                  * ok( pass, "Show" );
2999                  *
3000                  * @name show
3001                  * @type jQuery
3002                  * @cat Effects
3003                  */
3004                 show: function(){
3005                         this.style.display = this.oldblock ? this.oldblock : "";
3006                         if ( jQuery.css(this,"display") == "none" )
3007                                 this.style.display = "block";
3008                 },
3009
3010                 /**
3011                  * Hides each of the set of matched elements if they are shown.
3012                  *
3013                  * @example $("p").hide()
3014                  * @before <p>Hello</p>
3015                  * @result [ <p style="display: none">Hello</p> ]
3016                  *
3017                  * var pass = true, div = $("div");
3018                  * div.hide().each(function(){
3019                  *   if ( this.style.display != "none" ) pass = false;
3020                  * });
3021                  * ok( pass, "Hide" );
3022                  *
3023                  * @name hide
3024                  * @type jQuery
3025                  * @cat Effects
3026                  */
3027                 hide: function(){
3028                         this.oldblock = this.oldblock || jQuery.css(this,"display");
3029                         if ( this.oldblock == "none" )
3030                                 this.oldblock = "block";
3031                         this.style.display = "none";
3032                 },
3033
3034                 /**
3035                  * Toggles each of the set of matched elements. If they are shown,
3036                  * toggle makes them hidden. If they are hidden, toggle
3037                  * makes them shown.
3038                  *
3039                  * @example $("p").toggle()
3040                  * @before <p>Hello</p><p style="display: none">Hello Again</p>
3041                  * @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
3042                  *
3043                  * @name toggle
3044                  * @type jQuery
3045                  * @cat Effects
3046                  */
3047                 toggle: function(){
3048                         jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ].apply( jQuery(this), arguments );
3049                 },
3050
3051                 /**
3052                  * Adds the specified class to each of the set of matched elements.
3053                  *
3054                  * @example $("p").addClass("selected")
3055                  * @before <p>Hello</p>
3056                  * @result [ <p class="selected">Hello</p> ]
3057                  *
3058                  * @test var div = $("div");
3059                  * div.addClass("test");
3060                  * var pass = true;
3061                  * for ( var i = 0; i < div.size(); i++ ) {
3062                  *  if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
3063                  * }
3064                  * ok( pass, "Add Class" );
3065                  *
3066                  * @name addClass
3067                  * @type jQuery
3068                  * @param String class A CSS class to add to the elements
3069                  * @cat DOM
3070                  */
3071                 addClass: function(c){
3072                         jQuery.className.add(this,c);
3073                 },
3074
3075                 /**
3076                  * Removes the specified class from the set of matched elements.
3077                  *
3078                  * @example $("p").removeClass("selected")
3079                  * @before <p class="selected">Hello</p>
3080                  * @result [ <p>Hello</p> ]
3081                  *
3082                  * @test var div = $("div").addClass("test");
3083                  * div.removeClass("test");
3084                  * var pass = true;
3085                  * for ( var i = 0; i < div.size(); i++ ) {
3086                  *  if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
3087                  * }
3088                  * ok( pass, "Remove Class" );
3089                  *
3090                  * @name removeClass
3091                  * @type jQuery
3092                  * @param String class A CSS class to remove from the elements
3093                  * @cat DOM
3094                  */
3095                 removeClass: function(c){
3096                         jQuery.className.remove(this,c);
3097                 },
3098
3099                 /**
3100                  * Adds the specified class if it is present, removes it if it is
3101                  * not present.
3102                  *
3103                  * @example $("p").toggleClass("selected")
3104                  * @before <p>Hello</p><p class="selected">Hello Again</p>
3105                  * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
3106                  *
3107                  * @name toggleClass
3108                  * @type jQuery
3109                  * @param String class A CSS class with which to toggle the elements
3110                  * @cat DOM
3111                  */
3112                 toggleClass: function( c ){
3113                         jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this,c);
3114                 },
3115
3116                 /**
3117                  * Removes all matched elements from the DOM. This does NOT remove them from the
3118                  * jQuery object, allowing you to use the matched elements further.
3119                  *
3120                  * @example $("p").remove();
3121                  * @before <p>Hello</p> how are <p>you?</p>
3122                  * @result how are
3123                  *
3124                  * @name remove
3125                  * @type jQuery
3126                  * @cat DOM/Manipulation
3127                  */
3128
3129                 /**
3130                  * Removes only elements (out of the list of matched elements) that match
3131                  * the specified jQuery expression. This does NOT remove them from the
3132                  * jQuery object, allowing you to use the matched elements further.
3133                  *
3134                  * @example $("p").remove(".hello");
3135                  * @before <p class="hello">Hello</p> how are <p>you?</p>
3136                  * @result how are <p>you?</p>
3137                  *
3138                  * @name remove
3139                  * @type jQuery
3140                  * @param String expr A jQuery expression to filter elements by.
3141                  * @cat DOM/Manipulation
3142                  */
3143                 remove: function(a){
3144                         if ( !a || jQuery.filter( a, [this] ).r )
3145                                 this.parentNode.removeChild( this );
3146                 },
3147
3148                 /**
3149                  * Removes all child nodes from the set of matched elements.
3150                  *
3151                  * @example $("p").empty()
3152                  * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
3153                  * @result [ <p></p> ]
3154                  *
3155                  * @name empty
3156                  * @type jQuery
3157                  * @cat DOM/Manipulation
3158                  */
3159                 empty: function(){
3160                         while ( this.firstChild )
3161                                 this.removeChild( this.firstChild );
3162                 },
3163
3164                 /**
3165                  * Binds a handler to a particular event (like click) for each matched element.
3166                  * The event handler is passed an event object that you can use to prevent
3167                  * default behaviour. To stop both default action and event bubbling, your handler
3168                  * has to return false.
3169                  *
3170                  * @example $("p").bind( "click", function() {
3171                  *   alert( $(this).text() );
3172                  * } )
3173                  * @before <p>Hello</p>
3174                  * @result alert("Hello")
3175                  *
3176                  * @example $("form").bind( "submit", function() { return false; } )
3177                  * @desc Cancel a default action and prevent it from bubbling by returning false
3178                  * from your function.
3179                  *
3180                  * @example $("form").bind( "submit", function(event) {
3181                  *   event.preventDefault();
3182                  * } );
3183                  * @desc Cancel only the default action by using the preventDefault method.
3184                  *
3185                  *
3186                  * @example $("form").bind( "submit", function(event) {
3187                  *   event.stopPropagation();
3188                  * } )
3189                  * @desc Stop only an event from bubbling by using the stopPropagation method.
3190                  *
3191                  * @name bind
3192                  * @type jQuery
3193                  * @param String type An event type
3194                  * @param Function fn A function to bind to the event on each of the set of matched elements
3195                  * @cat Events
3196                  */
3197                 bind: function( type, fn ) {
3198                         if ( fn.constructor == String )
3199                                 fn = new Function("e", ( !fn.indexOf(".") ? "jQuery(this)" : "return " ) + fn);
3200                         jQuery.event.add( this, type, fn );
3201                 },
3202
3203                 /**
3204                  * The opposite of bind, removes a bound event from each of the matched
3205                  * elements. You must pass the identical function that was used in the original
3206                  * bind method.
3207                  *
3208                  * @example $("p").unbind( "click", function() { alert("Hello"); } )
3209                  * @before <p onclick="alert('Hello');">Hello</p>
3210                  * @result [ <p>Hello</p> ]
3211                  *
3212                  * @name unbind
3213                  * @type jQuery
3214                  * @param String type An event type
3215                  * @param Function fn A function to unbind from the event on each of the set of matched elements
3216                  * @cat Events
3217                  */
3218
3219                 /**
3220                  * Removes all bound events of a particular type from each of the matched
3221                  * elements.
3222                  *
3223                  * @example $("p").unbind( "click" )
3224                  * @before <p onclick="alert('Hello');">Hello</p>
3225                  * @result [ <p>Hello</p> ]
3226                  *
3227                  * @name unbind
3228                  * @type jQuery
3229                  * @param String type An event type
3230                  * @cat Events
3231                  */
3232
3233                 /**
3234                  * Removes all bound events from each of the matched elements.
3235                  *
3236                  * @example $("p").unbind()
3237                  * @before <p onclick="alert('Hello');">Hello</p>
3238                  * @result [ <p>Hello</p> ]
3239                  *
3240                  * @name unbind
3241                  * @type jQuery
3242                  * @cat Events
3243                  */
3244                 unbind: function( type, fn ) {
3245                         jQuery.event.remove( this, type, fn );
3246                 },
3247
3248                 /**
3249                  * Trigger a type of event on every matched element.
3250                  *
3251                  * @example $("p").trigger("click")
3252                  * @before <p click="alert('hello')">Hello</p>
3253                  * @result alert('hello')
3254                  *
3255                  * @name trigger
3256                  * @type jQuery
3257                  * @param String type An event type to trigger.
3258                  * @cat Events
3259                  */
3260                 trigger: function( type, data ) {
3261                         jQuery.event.trigger( type, data, this );
3262                 }
3263         }
3264 };
3265
3266 jQuery.init();