Added test to verify bug #185
[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          * @test t( "Grouped Form Elements", "input[@name='foo[bar]']", ["hidden2"] );
1635          *
1636          * @test t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"]  );
1637          * @test t( "All Children of ID with no children", "#firstUL/*", []  );
1638          *
1639          * @name $.find
1640          * @type Array<Element>
1641          * @private
1642          * @cat Core
1643          */
1644         find: function( t, context ) {
1645                 // Make sure that the context is a DOM Element
1646                 if ( context && context.nodeType == undefined )
1647                         context = null;
1648
1649                 // Set the correct context (if none is provided)
1650                 context = context || jQuery.context || document;
1651
1652                 if ( t.constructor != String ) return [t];
1653
1654                 if ( !t.indexOf("//") ) {
1655                         context = context.documentElement;
1656                         t = t.substr(2,t.length);
1657                 } else if ( !t.indexOf("/") ) {
1658                         context = context.documentElement;
1659                         t = t.substr(1,t.length);
1660                         // FIX Assume the root element is right :(
1661                         if ( t.indexOf("/") >= 1 )
1662                                 t = t.substr(t.indexOf("/"),t.length);
1663                 }
1664
1665                 var ret = [context];
1666                 var done = [];
1667                 var last = null;
1668
1669                 while ( t.length > 0 && last != t ) {
1670                         var r = [];
1671                         last = t;
1672
1673                         t = jQuery.trim(t).replace( /^\/\//i, "" );
1674
1675                         var foundToken = false;
1676
1677                         for ( var i = 0; i < jQuery.token.length; i += 2 ) {
1678                                 if ( foundToken ) continue;
1679
1680                                 var re = new RegExp("^(" + jQuery.token[i] + ")");
1681                                 var m = re.exec(t);
1682
1683                                 if ( m ) {
1684                                         r = ret = jQuery.map( ret, jQuery.token[i+1] );
1685                                         t = jQuery.trim( t.replace( re, "" ) );
1686                                         foundToken = true;
1687                                 }
1688                         }
1689
1690                         if ( !foundToken ) {
1691                                 if ( !t.indexOf(",") || !t.indexOf("|") ) {
1692                                         if ( ret[0] == context ) ret.shift();
1693                                         done = jQuery.merge( done, ret );
1694                                         r = ret = [context];
1695                                         t = " " + t.substr(1,t.length);
1696                                 } else {
1697                                         var re2 = /^([#.]?)([a-z0-9\\*_-]*)/i;
1698                                         var m = re2.exec(t);
1699
1700                                         if ( m[1] == "#" ) {
1701                                                 // Ummm, should make this work in all XML docs
1702                                                 var oid = document.getElementById(m[2]);
1703                                                 r = ret = oid ? [oid] : [];
1704                                                 t = t.replace( re2, "" );
1705                                         } else {
1706                                                 if ( !m[2] || m[1] == "." ) m[2] = "*";
1707
1708                                                 for ( var i = 0; i < ret.length; i++ )
1709                                                         r = jQuery.merge( r,
1710                                                                 m[2] == "*" ?
1711                                                                         jQuery.getAll(ret[i]) :
1712                                                                         ret[i].getElementsByTagName(m[2])
1713                                                         );
1714                                         }
1715                                 }
1716
1717                         }
1718
1719                         if ( t ) {
1720                                 var val = jQuery.filter(t,r);
1721                                 ret = r = val.r;
1722                                 t = jQuery.trim(val.t);
1723                         }
1724                 }
1725
1726                 if ( ret && ret[0] == context ) ret.shift();
1727                 done = jQuery.merge( done, ret );
1728
1729                 return done;
1730         },
1731
1732         getAll: function(o,r) {
1733                 r = r || [];
1734                 var s = o.childNodes;
1735                 for ( var i = 0; i < s.length; i++ )
1736                         if ( s[i].nodeType == 1 ) {
1737                                 r.push( s[i] );
1738                                 jQuery.getAll( s[i], r );
1739                         }
1740                 return r;
1741         },
1742
1743         attr: function(elem, name, value){
1744                 var fix = {
1745                         "for": "htmlFor",
1746                         "class": "className",
1747                         "float": "cssFloat",
1748                         innerHTML: "innerHTML",
1749                         className: "className",
1750                         value: "value",
1751                         disabled: "disabled",
1752                         checked: "checked"
1753                 };
1754
1755                 if ( fix[name] ) {
1756                         if ( value != undefined ) elem[fix[name]] = value;
1757                         return elem[fix[name]];
1758                 } else if ( elem.getAttribute != undefined ) {
1759                         if ( value != undefined ) elem.setAttribute( name, value );
1760                         return elem.getAttribute( name, 2 );
1761                 } else {
1762                         name = name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});
1763                         if ( value != undefined ) elem[name] = value;
1764                         return elem[name];
1765                 }
1766         },
1767
1768         // The regular expressions that power the parsing engine
1769         parse: [
1770                 // Match: [@value='test'], [@foo]
1771                 [ "\\[ *(@)S *([!*$^=]*) *Q\\]", 1 ],
1772
1773                 // Match: [div], [div p]
1774                 [ "(\\[)Q\\]", 0 ],
1775
1776                 // Match: :contains('foo')
1777                 [ "(:)S\\(Q\\)", 0 ],
1778
1779                 // Match: :even, :last-chlid
1780                 [ "([:.#]*)S", 0 ]
1781         ],
1782
1783         filter: function(t,r,not) {
1784                 // Figure out if we're doing regular, or inverse, filtering
1785                 var g = not !== false ? jQuery.grep :
1786                         function(a,f) {return jQuery.grep(a,f,true);};
1787
1788                 while ( t && /^[a-z[({<*:.#]/i.test(t) ) {
1789
1790                         var p = jQuery.parse;
1791
1792                         for ( var i = 0; i < p.length; i++ ) {
1793                                 var re = new RegExp( "^" + p[i][0]
1794
1795                                         // Look for a string-like sequence
1796                                         .replace( 'S', "([a-z*_-][a-z0-9_-]*)" )
1797
1798                                         // Look for something (optionally) enclosed with quotes
1799                                         .replace( 'Q', " *'?\"?([^'\"]*?)'?\"? *" ), "i" );
1800
1801                                 var m = re.exec( t );
1802
1803                                 if ( m ) {
1804                                         // Re-organize the match
1805                                         if ( p[i][1] )
1806                                                 m = ["", m[1], m[3], m[2], m[4]];
1807
1808                                         // Remove what we just matched
1809                                         t = t.replace( re, "" );
1810
1811                                         break;
1812                                 }
1813                         }
1814
1815                         // :not() is a special case that can be optomized by
1816                         // keeping it out of the expression list
1817                         if ( m[1] == ":" && m[2] == "not" )
1818                                 r = jQuery.filter(m[3],r,false).r;
1819
1820                         // Otherwise, find the expression to execute
1821                         else {
1822                                 var f = jQuery.expr[m[1]];
1823                                 if ( f.constructor != String )
1824                                         f = jQuery.expr[m[1]][m[2]];
1825
1826                                 // Build a custom macro to enclose it
1827                                 eval("f = function(a,i){" +
1828                                         ( m[1] == "@" ? "z=jQuery.attr(a,m[3]);" : "" ) +
1829                                         "return " + f + "}");
1830
1831                                 // Execute it against the current filter
1832                                 r = g( r, f );
1833                         }
1834                 }
1835
1836                 // Return an array of filtered elements (r)
1837                 // and the modified expression string (t)
1838                 return { r: r, t: t };
1839         },
1840
1841         /**
1842          * Remove the whitespace from the beginning and end of a string.
1843          *
1844          * @example $.trim("  hello, how are you?  ");
1845          * @result "hello, how are you?"
1846          *
1847          * @name $.trim
1848          * @type String
1849          * @param String str The string to trim.
1850          * @cat Javascript
1851          */
1852         trim: function(t){
1853                 return t.replace(/^\s+|\s+$/g, "");
1854         },
1855
1856         /**
1857          * All ancestors of a given element.
1858          *
1859          * @private
1860          * @name $.parents
1861          * @type Array<Element>
1862          * @param Element elem The element to find the ancestors of.
1863          * @cat DOM/Traversing
1864          */
1865         parents: function( elem ){
1866                 var matched = [];
1867                 var cur = elem.parentNode;
1868                 while ( cur && cur != document ) {
1869                         matched.push( cur );
1870                         cur = cur.parentNode;
1871                 }
1872                 return matched;
1873         },
1874
1875         /**
1876          * All elements on a specified axis.
1877          *
1878          * @private
1879          * @name $.sibling
1880          * @type Array
1881          * @param Element elem The element to find all the siblings of (including itself).
1882          * @cat DOM/Traversing
1883          */
1884         sibling: function(elem, pos, not) {
1885                 var elems = [];
1886
1887                 var siblings = elem.parentNode.childNodes;
1888                 for ( var i = 0; i < siblings.length; i++ ) {
1889                         if ( not === true && siblings[i] == elem ) continue;
1890
1891                         if ( siblings[i].nodeType == 1 )
1892                                 elems.push( siblings[i] );
1893                         if ( siblings[i] == elem )
1894                                 elems.n = elems.length - 1;
1895                 }
1896
1897                 return jQuery.extend( elems, {
1898                         last: elems.n == elems.length - 1,
1899                         cur: pos == "even" && elems.n % 2 == 0 || pos == "odd" && elems.n % 2 || elems[pos] == elem,
1900                         prev: elems[elems.n - 1],
1901                         next: elems[elems.n + 1]
1902                 });
1903         },
1904
1905         /**
1906          * Merge two arrays together, removing all duplicates. The final order
1907          * or the new array is: All the results from the first array, followed
1908          * by the unique results from the second array.
1909          *
1910          * @example $.merge( [0,1,2], [2,3,4] )
1911          * @result [0,1,2,3,4]
1912          *
1913          * @example $.merge( [3,2,1], [4,3,2] )
1914          * @result [3,2,1,4]
1915          *
1916          * @name $.merge
1917          * @type Array
1918          * @param Array first The first array to merge.
1919          * @param Array second The second array to merge.
1920          * @cat Javascript
1921          */
1922         merge: function(first, second) {
1923                 var result = [];
1924
1925                 // Move b over to the new array (this helps to avoid
1926                 // StaticNodeList instances)
1927                 for ( var k = 0; k < first.length; k++ )
1928                         result[k] = first[k];
1929
1930                 // Now check for duplicates between a and b and only
1931                 // add the unique items
1932                 for ( var i = 0; i < second.length; i++ ) {
1933                         var noCollision = true;
1934
1935                         // The collision-checking process
1936                         for ( var j = 0; j < first.length; j++ )
1937                                 if ( second[i] == first[j] )
1938                                         noCollision = false;
1939
1940                         // If the item is unique, add it
1941                         if ( noCollision )
1942                                 result.push( second[i] );
1943                 }
1944
1945                 return result;
1946         },
1947
1948         /**
1949          * Filter items out of an array, by using a filter function.
1950          * The specified function will be passed two arguments: The
1951          * current array item and the index of the item in the array. The
1952          * function should return 'true' if you wish to keep the item in
1953          * the array, false if it should be removed.
1954          *
1955          * @example $.grep( [0,1,2], function(i){
1956          *   return i > 0;
1957          * });
1958          * @result [1, 2]
1959          *
1960          * @name $.grep
1961          * @type Array
1962          * @param Array array The Array to find items in.
1963          * @param Function fn The function to process each item against.
1964          * @param Boolean inv Invert the selection - select the opposite of the function.
1965          * @cat Javascript
1966          */
1967         grep: function(elems, fn, inv) {
1968                 // If a string is passed in for the function, make a function
1969                 // for it (a handy shortcut)
1970                 if ( fn.constructor == String )
1971                         fn = new Function("a","i","return " + fn);
1972
1973                 var result = [];
1974
1975                 // Go through the array, only saving the items
1976                 // that pass the validator function
1977                 for ( var i = 0; i < elems.length; i++ )
1978                         if ( !inv && fn(elems[i],i) || inv && !fn(elems[i],i) )
1979                                 result.push( elems[i] );
1980
1981                 return result;
1982         },
1983
1984         /**
1985          * Translate all items in an array to another array of items. 
1986          * The translation function that is provided to this method is 
1987          * called for each item in the array and is passed one argument: 
1988          * The item to be translated. The function can then return:
1989          * The translated value, 'null' (to remove the item), or 
1990          * an array of values - which will be flattened into the full array.
1991          *
1992          * @example $.map( [0,1,2], function(i){
1993          *   return i + 4;
1994          * });
1995          * @result [4, 5, 6]
1996          *
1997          * @example $.map( [0,1,2], function(i){
1998          *   return i > 0 ? i + 1 : null;
1999          * });
2000          * @result [2, 3]
2001          * 
2002          * @example $.map( [0,1,2], function(i){
2003          *   return [ i, i + 1 ];
2004          * });
2005          * @result [0, 1, 1, 2, 2, 3]
2006          *
2007          * @name $.map
2008          * @type Array
2009          * @param Array array The Array to translate.
2010          * @param Function fn The function to process each item against.
2011          * @cat Javascript
2012          */
2013         map: function(elems, fn) {
2014                 // If a string is passed in for the function, make a function
2015                 // for it (a handy shortcut)
2016                 if ( fn.constructor == String )
2017                         fn = new Function("a","return " + fn);
2018
2019                 var result = [];
2020
2021                 // Go through the array, translating each of the items to their
2022                 // new value (or values).
2023                 for ( var i = 0; i < elems.length; i++ ) {
2024                         var val = fn(elems[i],i);
2025
2026                         if ( val !== null && val != undefined ) {
2027                                 if ( val.constructor != Array ) val = [val];
2028                                 result = jQuery.merge( result, val );
2029                         }
2030                 }
2031
2032                 return result;
2033         },
2034
2035         /*
2036          * A number of helper functions used for managing events.
2037          * Many of the ideas behind this code orignated from Dean Edwards' addEvent library.
2038          */
2039         event: {
2040
2041                 // Bind an event to an element
2042                 // Original by Dean Edwards
2043                 add: function(element, type, handler) {
2044                         // For whatever reason, IE has trouble passing the window object
2045                         // around, causing it to be cloned in the process
2046                         if ( jQuery.browser.msie && element.setInterval != undefined )
2047                                 element = window;
2048
2049                         // Make sure that the function being executed has a unique ID
2050                         if ( !handler.guid )
2051                                 handler.guid = this.guid++;
2052
2053                         // Init the element's event structure
2054                         if (!element.events)
2055                                 element.events = {};
2056
2057                         // Get the current list of functions bound to this event
2058                         var handlers = element.events[type];
2059
2060                         // If it hasn't been initialized yet
2061                         if (!handlers) {
2062                                 // Init the event handler queue
2063                                 handlers = element.events[type] = {};
2064
2065                                 // Remember an existing handler, if it's already there
2066                                 if (element["on" + type])
2067                                         handlers[0] = element["on" + type];
2068                         }
2069
2070                         // Add the function to the element's handler list
2071                         handlers[handler.guid] = handler;
2072
2073                         // And bind the global event handler to the element
2074                         element["on" + type] = this.handle;
2075
2076                         // Remember the function in a global list (for triggering)
2077                         if (!this.global[type])
2078                                 this.global[type] = [];
2079                         this.global[type].push( element );
2080                 },
2081
2082                 guid: 1,
2083                 global: {},
2084
2085                 // Detach an event or set of events from an element
2086                 remove: function(element, type, handler) {
2087                         if (element.events)
2088                                 if (type && element.events[type])
2089                                         if ( handler )
2090                                                 delete element.events[type][handler.guid];
2091                                         else
2092                                                 for ( var i in element.events[type] )
2093                                                         delete element.events[type][i];
2094                                 else
2095                                         for ( var j in element.events )
2096                                                 this.remove( element, j );
2097                 },
2098
2099                 trigger: function(type,data,element) {
2100                         // Touch up the incoming data
2101                         data = data || [];
2102
2103                         // Handle a global trigger
2104                         if ( !element ) {
2105                                 var g = this.global[type];
2106                                 if ( g )
2107                                         for ( var i = 0; i < g.length; i++ )
2108                                                 this.trigger( type, data, g[i] );
2109
2110                         // Handle triggering a single element
2111                         } else if ( element["on" + type] ) {
2112                                 // Pass along a fake event
2113                                 data.unshift( this.fix({ type: type, target: element }) );
2114
2115                                 // Trigger the event
2116                                 element["on" + type].apply( element, data );
2117                         }
2118                 },
2119
2120                 handle: function(event) {
2121                         if ( typeof jQuery == "undefined" ) return;
2122
2123                         event = event || jQuery.event.fix( window.event );
2124
2125                         // If no correct event was found, fail
2126                         if ( !event ) return;
2127
2128                         var returnValue = true;
2129
2130                         var c = this.events[event.type];
2131
2132                         for ( var j in c ) {
2133                                 if ( c[j].apply( this, [event] ) === false ) {
2134                                         event.preventDefault();
2135                                         event.stopPropagation();
2136                                         returnValue = false;
2137                                 }
2138                         }
2139
2140                         return returnValue;
2141                 },
2142
2143                 fix: function(event) {
2144                         if ( event ) {
2145                                 event.preventDefault = function() {
2146                                         this.returnValue = false;
2147                                 };
2148
2149                                 event.stopPropagation = function() {
2150                                         this.cancelBubble = true;
2151                                 };
2152                         }
2153
2154                         return event;
2155                 }
2156
2157         }
2158 });
2159
2160 new function() {
2161         var b = navigator.userAgent.toLowerCase();
2162
2163         // Figure out what browser is being used
2164         jQuery.browser = {
2165                 safari: /webkit/.test(b),
2166                 opera: /opera/.test(b),
2167                 msie: /msie/.test(b) && !/opera/.test(b),
2168                 mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b)
2169         };
2170
2171         // Check to see if the W3C box model is being used
2172         jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
2173 };
2174
2175 jQuery.macros = {
2176         to: {
2177                 /**
2178                  * Append all of the matched elements to another, specified, set of elements.
2179                  * This operation is, essentially, the reverse of doing a regular
2180                  * $(A).append(B), in that instead of appending B to A, you're appending
2181                  * A to B.
2182                  *
2183                  * @example $("p").appendTo("#foo");
2184                  * @before <p>I would like to say: </p><div id="foo"></div>
2185                  * @result <div id="foo"><p>I would like to say: </p></div>
2186                  *
2187                  * @name appendTo
2188                  * @type jQuery
2189                  * @param String expr A jQuery expression of elements to match.
2190                  * @cat DOM/Manipulation
2191                  */
2192                 appendTo: "append",
2193
2194                 /**
2195                  * Prepend all of the matched elements to another, specified, set of elements.
2196                  * This operation is, essentially, the reverse of doing a regular
2197                  * $(A).prepend(B), in that instead of prepending B to A, you're prepending
2198                  * A to B.
2199                  *
2200                  * @example $("p").prependTo("#foo");
2201                  * @before <p>I would like to say: </p><div id="foo"><b>Hello</b></div>
2202                  * @result <div id="foo"><p>I would like to say: </p><b>Hello</b></div>
2203                  *
2204                  * @name prependTo
2205                  * @type jQuery
2206                  * @param String expr A jQuery expression of elements to match.
2207                  * @cat DOM/Manipulation
2208                  */
2209                 prependTo: "prepend",
2210
2211                 /**
2212                  * Insert all of the matched elements before another, specified, set of elements.
2213                  * This operation is, essentially, the reverse of doing a regular
2214                  * $(A).before(B), in that instead of inserting B before A, you're inserting
2215                  * A before B.
2216                  *
2217                  * @example $("p").insertBefore("#foo");
2218                  * @before <div id="foo">Hello</div><p>I would like to say: </p>
2219                  * @result <p>I would like to say: </p><div id="foo">Hello</div>
2220                  *
2221                  * @name insertBefore
2222                  * @type jQuery
2223                  * @param String expr A jQuery expression of elements to match.
2224                  * @cat DOM/Manipulation
2225                  */
2226                 insertBefore: "before",
2227
2228                 /**
2229                  * Insert all of the matched elements after another, specified, set of elements.
2230                  * This operation is, essentially, the reverse of doing a regular
2231                  * $(A).after(B), in that instead of inserting B after A, you're inserting
2232                  * A after B.
2233                  *
2234                  * @example $("p").insertAfter("#foo");
2235                  * @before <p>I would like to say: </p><div id="foo">Hello</div>
2236                  * @result <div id="foo">Hello</div><p>I would like to say: </p>
2237                  *
2238                  * @name insertAfter
2239                  * @type jQuery
2240                  * @param String expr A jQuery expression of elements to match.
2241                  * @cat DOM/Manipulation
2242                  */
2243                 insertAfter: "after"
2244         },
2245
2246         /**
2247          * Get the current CSS width of the first matched element.
2248          *
2249          * @example $("p").width();
2250          * @before <p>This is just a test.</p>
2251          * @result "300px"
2252          *
2253          * @name width
2254          * @type String
2255          * @cat CSS
2256          */
2257
2258         /**
2259          * Set the CSS width of every matched element. Be sure to include
2260          * the "px" (or other unit of measurement) after the number that you
2261          * specify, otherwise you might get strange results.
2262          *
2263          * @example $("p").width("20px");
2264          * @before <p>This is just a test.</p>
2265          * @result <p style="width:20px;">This is just a test.</p>
2266          *
2267          * @name width
2268          * @type jQuery
2269          * @param String val Set the CSS property to the specified value.
2270          * @cat CSS
2271          */
2272
2273         /**
2274          * Get the current CSS height of the first matched element.
2275          *
2276          * @example $("p").height();
2277          * @before <p>This is just a test.</p>
2278          * @result "14px"
2279          *
2280          * @name height
2281          * @type String
2282          * @cat CSS
2283          */
2284
2285         /**
2286          * Set the CSS height of every matched element. Be sure to include
2287          * the "px" (or other unit of measurement) after the number that you
2288          * specify, otherwise you might get strange results.
2289          *
2290          * @example $("p").height("20px");
2291          * @before <p>This is just a test.</p>
2292          * @result <p style="height:20px;">This is just a test.</p>
2293          *
2294          * @name height
2295          * @type jQuery
2296          * @param String val Set the CSS property to the specified value.
2297          * @cat CSS
2298          */
2299
2300         /**
2301          * Get the current CSS top of the first matched element.
2302          *
2303          * @example $("p").top();
2304          * @before <p>This is just a test.</p>
2305          * @result "0px"
2306          *
2307          * @name top
2308          * @type String
2309          * @cat CSS
2310          */
2311
2312         /**
2313          * Set the CSS top of every matched element. Be sure to include
2314          * the "px" (or other unit of measurement) after the number that you
2315          * specify, otherwise you might get strange results.
2316          *
2317          * @example $("p").top("20px");
2318          * @before <p>This is just a test.</p>
2319          * @result <p style="top:20px;">This is just a test.</p>
2320          *
2321          * @name top
2322          * @type jQuery
2323          * @param String val Set the CSS property to the specified value.
2324          * @cat CSS
2325          */
2326
2327         /**
2328          * Get the current CSS left of the first matched element.
2329          *
2330          * @example $("p").left();
2331          * @before <p>This is just a test.</p>
2332          * @result "0px"
2333          *
2334          * @name left
2335          * @type String
2336          * @cat CSS
2337          */
2338
2339         /**
2340          * Set the CSS left of every matched element. Be sure to include
2341          * the "px" (or other unit of measurement) after the number that you
2342          * specify, otherwise you might get strange results.
2343          *
2344          * @example $("p").left("20px");
2345          * @before <p>This is just a test.</p>
2346          * @result <p style="left:20px;">This is just a test.</p>
2347          *
2348          * @name left
2349          * @type jQuery
2350          * @param String val Set the CSS property to the specified value.
2351          * @cat CSS
2352          */
2353
2354         /**
2355          * Get the current CSS position of the first matched element.
2356          *
2357          * @example $("p").position();
2358          * @before <p>This is just a test.</p>
2359          * @result "static"
2360          *
2361          * @name position
2362          * @type String
2363          * @cat CSS
2364          */
2365
2366         /**
2367          * Set the CSS position of every matched element.
2368          *
2369          * @example $("p").position("relative");
2370          * @before <p>This is just a test.</p>
2371          * @result <p style="position:relative;">This is just a test.</p>
2372          *
2373          * @name position
2374          * @type jQuery
2375          * @param String val Set the CSS property to the specified value.
2376          * @cat CSS
2377          */
2378
2379         /**
2380          * Get the current CSS float of the first matched element.
2381          *
2382          * @example $("p").float();
2383          * @before <p>This is just a test.</p>
2384          * @result "none"
2385          *
2386          * @name float
2387          * @type String
2388          * @cat CSS
2389          */
2390
2391         /**
2392          * Set the CSS float of every matched element.
2393          *
2394          * @example $("p").float("left");
2395          * @before <p>This is just a test.</p>
2396          * @result <p style="float:left;">This is just a test.</p>
2397          *
2398          * @name float
2399          * @type jQuery
2400          * @param String val Set the CSS property to the specified value.
2401          * @cat CSS
2402          */
2403
2404         /**
2405          * Get the current CSS overflow of the first matched element.
2406          *
2407          * @example $("p").overflow();
2408          * @before <p>This is just a test.</p>
2409          * @result "none"
2410          *
2411          * @name overflow
2412          * @type String
2413          * @cat CSS
2414          */
2415
2416         /**
2417          * Set the CSS overflow of every matched element.
2418          *
2419          * @example $("p").overflow("auto");
2420          * @before <p>This is just a test.</p>
2421          * @result <p style="overflow:auto;">This is just a test.</p>
2422          *
2423          * @name overflow
2424          * @type jQuery
2425          * @param String val Set the CSS property to the specified value.
2426          * @cat CSS
2427          */
2428
2429         /**
2430          * Get the current CSS color of the first matched element.
2431          *
2432          * @example $("p").color();
2433          * @before <p>This is just a test.</p>
2434          * @result "black"
2435          *
2436          * @name color
2437          * @type String
2438          * @cat CSS
2439          */
2440
2441         /**
2442          * Set the CSS color of every matched element.
2443          *
2444          * @example $("p").color("blue");
2445          * @before <p>This is just a test.</p>
2446          * @result <p style="color:blue;">This is just a test.</p>
2447          *
2448          * @name color
2449          * @type jQuery
2450          * @param String val Set the CSS property to the specified value.
2451          * @cat CSS
2452          */
2453
2454         /**
2455          * Get the current CSS background of the first matched element.
2456          *
2457          * @example $("p").background();
2458          * @before <p style="background:blue;">This is just a test.</p>
2459          * @result "blue"
2460          *
2461          * @name background
2462          * @type String
2463          * @cat CSS
2464          */
2465
2466         /**
2467          * Set the CSS background of every matched element.
2468          *
2469          * @example $("p").background("blue");
2470          * @before <p>This is just a test.</p>
2471          * @result <p style="background:blue;">This is just a test.</p>
2472          *
2473          * @name background
2474          * @type jQuery
2475          * @param String val Set the CSS property to the specified value.
2476          * @cat CSS
2477          */
2478
2479         css: "width,height,top,left,position,float,overflow,color,background".split(","),
2480
2481         /**
2482          * Reduce the set of matched elements to a single element.
2483          * The position of the element in the set of matched elements
2484          * starts at 0 and goes to length - 1.
2485          *
2486          * @example $("p").eq(1)
2487          * @before <p>This is just a test.</p><p>So is this</p>
2488          * @result [ <p>So is this</p> ]
2489          *
2490          * @name eq
2491          * @type jQuery
2492          * @param Number pos The index of the element that you wish to limit to.
2493          * @cat Core
2494          */
2495
2496         /**
2497          * Reduce the set of matched elements to all elements before a given position.
2498          * The position of the element in the set of matched elements
2499          * starts at 0 and goes to length - 1.
2500          *
2501          * @example $("p").lt(1)
2502          * @before <p>This is just a test.</p><p>So is this</p>
2503          * @result [ <p>This is just a test.</p> ]
2504          *
2505          * @name lt
2506          * @type jQuery
2507          * @param Number pos Reduce the set to all elements below this position.
2508          * @cat Core
2509          */
2510
2511         /**
2512          * Reduce the set of matched elements to all elements after a given position.
2513          * The position of the element in the set of matched elements
2514          * starts at 0 and goes to length - 1.
2515          *
2516          * @example $("p").gt(0)
2517          * @before <p>This is just a test.</p><p>So is this</p>
2518          * @result [ <p>So is this</p> ]
2519          *
2520          * @name gt
2521          * @type jQuery
2522          * @param Number pos Reduce the set to all elements after this position.
2523          * @cat Core
2524          */
2525
2526         /**
2527          * Filter the set of elements to those that contain the specified text.
2528          *
2529          * @example $("p").contains("test")
2530          * @before <p>This is just a test.</p><p>So is this</p>
2531          * @result [ <p>This is just a test.</p> ]
2532          *
2533          * @name contains
2534          * @type jQuery
2535          * @param String str The string that will be contained within the text of an element.
2536          * @cat DOM/Traversing
2537          */
2538
2539         filter: [ "eq", "lt", "gt", "contains" ],
2540
2541         attr: {
2542                 /**
2543                  * Get the current value of the first matched element.
2544                  *
2545                  * @example $("input").val();
2546                  * @before <input type="text" value="some text"/>
2547                  * @result "some text"
2548                  *
2549                  * @test ok( $("#text1").val() == "Test", "Check for value of input element" );
2550                  * @test ok( !$("#text1").val() == "", "Check for value of input element" );
2551                  *
2552                  * @name val
2553                  * @type String
2554                  * @cat DOM/Attributes
2555                  */
2556
2557                 /**
2558                  * Set the value of every matched element.
2559                  *
2560                  * @example $("input").value("test");
2561                  * @before <input type="text" value="some text"/>
2562                  * @result <input type="text" value="test"/>
2563                  *
2564                  * @test document.getElementById('text1').value = "bla";
2565                  * ok( $("#text1").val() == "bla", "Check for modified value of input element" );
2566                  * $("#text1").val('test');
2567                  * ok ( document.getElementById('text1').value == "test", "Check for modified (via val(String)) value of input element" );
2568                  *
2569                  * @name val
2570                  * @type jQuery
2571                  * @param String val Set the property to the specified value.
2572                  * @cat DOM/Attributes
2573                  */
2574                 val: "value",
2575
2576                 /**
2577                  * Get the html contents of the first matched element.
2578                  *
2579                  * @example $("div").html();
2580                  * @before <div><input/></div>
2581                  * @result <input/>
2582                  *
2583                  * @name html
2584                  * @type String
2585                  * @cat DOM/Attributes
2586                  */
2587
2588                 /**
2589                  * Set the html contents of every matched element.
2590                  *
2591                  * @example $("div").html("<b>new stuff</b>");
2592                  * @before <div><input/></div>
2593                  * @result <div><b>new stuff</b></div>
2594                  *
2595                  * @test var div = $("div");
2596                  * div.html("<b>test</b>");
2597                  * var pass = true;
2598                  * for ( var i = 0; i < div.size(); i++ ) {
2599                  *   if ( div.get(i).childNodes.length == 0 ) pass = false;
2600                  * }
2601                  * ok( pass, "Set HTML" );
2602                  *
2603                  * @name html
2604                  * @type jQuery
2605                  * @param String val Set the html contents to the specified value.
2606                  * @cat DOM/Attributes
2607                  */
2608                 html: "innerHTML",
2609
2610                 /**
2611                  * Get the current id of the first matched element.
2612                  *
2613                  * @example $("input").id();
2614                  * @before <input type="text" id="test" value="some text"/>
2615                  * @result "test"
2616                  *
2617                  * @name id
2618                  * @type String
2619                  * @cat DOM/Attributes
2620                  */
2621
2622                 /**
2623                  * Set the id of every matched element.
2624                  *
2625                  * @example $("input").id("newid");
2626                  * @before <input type="text" id="test" value="some text"/>
2627                  * @result <input type="text" id="newid" value="some text"/>
2628                  *
2629                  * @name id
2630                  * @type jQuery
2631                  * @param String val Set the property to the specified value.
2632                  * @cat DOM/Attributes
2633                  */
2634                 id: null,
2635
2636                 /**
2637                  * Get the current title of the first matched element.
2638                  *
2639                  * @example $("img").title();
2640                  * @before <img src="test.jpg" title="my image"/>
2641                  * @result "my image"
2642                  *
2643                  * @name title
2644                  * @type String
2645                  * @cat DOM/Attributes
2646                  */
2647
2648                 /**
2649                  * Set the title of every matched element.
2650                  *
2651                  * @example $("img").title("new title");
2652                  * @before <img src="test.jpg" title="my image"/>
2653                  * @result <img src="test.jpg" title="new image"/>
2654                  *
2655                  * @name title
2656                  * @type jQuery
2657                  * @param String val Set the property to the specified value.
2658                  * @cat DOM/Attributes
2659                  */
2660                 title: null,
2661
2662                 /**
2663                  * Get the current name of the first matched element.
2664                  *
2665                  * @example $("input").name();
2666                  * @before <input type="text" name="username"/>
2667                  * @result "username"
2668                  *
2669                  * @name name
2670                  * @type String
2671                  * @cat DOM/Attributes
2672                  */
2673
2674                 /**
2675                  * Set the name of every matched element.
2676                  *
2677                  * @example $("input").name("user");
2678                  * @before <input type="text" name="username"/>
2679                  * @result <input type="text" name="user"/>
2680                  *
2681                  * @name name
2682                  * @type jQuery
2683                  * @param String val Set the property to the specified value.
2684                  * @cat DOM/Attributes
2685                  */
2686                 name: null,
2687
2688                 /**
2689                  * Get the current href of the first matched element.
2690                  *
2691                  * @example $("a").href();
2692                  * @before <a href="test.html">my link</a>
2693                  * @result "test.html"
2694                  *
2695                  * @name href
2696                  * @type String
2697                  * @cat DOM/Attributes
2698                  */
2699
2700                 /**
2701                  * Set the href of every matched element.
2702                  *
2703                  * @example $("a").href("test2.html");
2704                  * @before <a href="test.html">my link</a>
2705                  * @result <a href="test2.html">my link</a>
2706                  *
2707                  * @name href
2708                  * @type jQuery
2709                  * @param String val Set the property to the specified value.
2710                  * @cat DOM/Attributes
2711                  */
2712                 href: null,
2713
2714                 /**
2715                  * Get the current src of the first matched element.
2716                  *
2717                  * @example $("img").src();
2718                  * @before <img src="test.jpg" title="my image"/>
2719                  * @result "test.jpg"
2720                  *
2721                  * @name src
2722                  * @type String
2723                  * @cat DOM/Attributes
2724                  */
2725
2726                 /**
2727                  * Set the src of every matched element.
2728                  *
2729                  * @example $("img").src("test2.jpg");
2730                  * @before <img src="test.jpg" title="my image"/>
2731                  * @result <img src="test2.jpg" title="my image"/>
2732                  *
2733                  * @name src
2734                  * @type jQuery
2735                  * @param String val Set the property to the specified value.
2736                  * @cat DOM/Attributes
2737                  */
2738                 src: null,
2739
2740                 /**
2741                  * Get the current rel of the first matched element.
2742                  *
2743                  * @example $("a").rel();
2744                  * @before <a href="test.html" rel="nofollow">my link</a>
2745                  * @result "nofollow"
2746                  *
2747                  * @name rel
2748                  * @type String
2749                  * @cat DOM/Attributes
2750                  */
2751
2752                 /**
2753                  * Set the rel of every matched element.
2754                  *
2755                  * @example $("a").rel("nofollow");
2756                  * @before <a href="test.html">my link</a>
2757                  * @result <a href="test.html" rel="nofollow">my link</a>
2758                  *
2759                  * @name rel
2760                  * @type jQuery
2761                  * @param String val Set the property to the specified value.
2762                  * @cat DOM/Attributes
2763                  */
2764                 rel: null
2765         },
2766
2767         axis: {
2768                 /**
2769                  * Get a set of elements containing the unique parents of the matched
2770                  * set of elements.
2771                  *
2772                  * @example $("p").parent()
2773                  * @before <div><p>Hello</p><p>Hello</p></div>
2774                  * @result [ <div><p>Hello</p><p>Hello</p></div> ]
2775                  *
2776                  * @name parent
2777                  * @type jQuery
2778                  * @cat DOM/Traversing
2779                  */
2780
2781                 /**
2782                  * Get a set of elements containing the unique parents of the matched
2783                  * set of elements, and filtered by an expression.
2784                  *
2785                  * @example $("p").parent(".selected")
2786                  * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
2787                  * @result [ <div class="selected"><p>Hello Again</p></div> ]
2788                  *
2789                  * @name parent
2790                  * @type jQuery
2791                  * @param String expr An expression to filter the parents with
2792                  * @cat DOM/Traversing
2793                  */
2794                 parent: "a.parentNode",
2795
2796                 /**
2797                  * Get a set of elements containing the unique ancestors of the matched
2798                  * set of elements (except for the root element).
2799                  *
2800                  * @example $("span").ancestors()
2801                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2802                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2803                  *
2804                  * @name ancestors
2805                  * @type jQuery
2806                  * @cat DOM/Traversing
2807                  */
2808
2809                 /**
2810                  * Get a set of elements containing the unique ancestors of the matched
2811                  * set of elements, and filtered by an expression.
2812                  *
2813                  * @example $("span").ancestors("p")
2814                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2815                  * @result [ <p><span>Hello</span></p> ]
2816                  *
2817                  * @name ancestors
2818                  * @type jQuery
2819                  * @param String expr An expression to filter the ancestors with
2820                  * @cat DOM/Traversing
2821                  */
2822                 ancestors: jQuery.parents,
2823
2824                 /**
2825                  * Get a set of elements containing the unique ancestors of the matched
2826                  * set of elements (except for the root element).
2827                  *
2828                  * @example $("span").ancestors()
2829                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2830                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2831                  *
2832                  * @name parents
2833                  * @type jQuery
2834                  * @cat DOM/Traversing
2835                  */
2836
2837                 /**
2838                  * Get a set of elements containing the unique ancestors of the matched
2839                  * set of elements, and filtered by an expression.
2840                  *
2841                  * @example $("span").ancestors("p")
2842                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2843                  * @result [ <p><span>Hello</span></p> ]
2844                  *
2845                  * @name parents
2846                  * @type jQuery
2847                  * @param String expr An expression to filter the ancestors with
2848                  * @cat DOM/Traversing
2849                  */
2850                 parents: jQuery.parents,
2851
2852                 /**
2853                  * Get a set of elements containing the unique next siblings of each of the
2854                  * matched set of elements.
2855                  *
2856                  * It only returns the very next sibling, not all next siblings.
2857                  *
2858                  * @example $("p").next()
2859                  * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
2860                  * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
2861                  *
2862                  * @name next
2863                  * @type jQuery
2864                  * @cat DOM/Traversing
2865                  */
2866
2867                 /**
2868                  * Get a set of elements containing the unique next siblings of each of the
2869                  * matched set of elements, and filtered by an expression.
2870                  *
2871                  * It only returns the very next sibling, not all next siblings.
2872                  *
2873                  * @example $("p").next(".selected")
2874                  * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
2875                  * @result [ <p class="selected">Hello Again</p> ]
2876                  *
2877                  * @name next
2878                  * @type jQuery
2879                  * @param String expr An expression to filter the next Elements with
2880                  * @cat DOM/Traversing
2881                  */
2882                 next: "jQuery.sibling(a).next",
2883
2884                 /**
2885                  * Get a set of elements containing the unique previous siblings of each of the
2886                  * matched set of elements.
2887                  *
2888                  * It only returns the immediately previous sibling, not all previous siblings.
2889                  *
2890                  * @example $("p").previous()
2891                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2892                  * @result [ <div><span>Hello Again</span></div> ]
2893                  *
2894                  * @name prev
2895                  * @type jQuery
2896                  * @cat DOM/Traversing
2897                  */
2898
2899                 /**
2900                  * Get a set of elements containing the unique previous siblings of each of the
2901                  * matched set of elements, and filtered by an expression.
2902                  *
2903                  * It only returns the immediately previous sibling, not all previous siblings.
2904                  *
2905                  * @example $("p").previous(".selected")
2906                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2907                  * @result [ <div><span>Hello</span></div> ]
2908                  *
2909                  * @name prev
2910                  * @type jQuery
2911                  * @param String expr An expression to filter the previous Elements with
2912                  * @cat DOM/Traversing
2913                  */
2914                 prev: "jQuery.sibling(a).prev",
2915
2916                 /**
2917                  * Get a set of elements containing all of the unique siblings of each of the
2918                  * matched set of elements.
2919                  *
2920                  * @example $("div").siblings()
2921                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2922                  * @result [ <p>Hello</p>, <p>And Again</p> ]
2923                  *
2924                  * @test isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" ); 
2925                  *
2926                  * @name siblings
2927                  * @type jQuery
2928                  * @cat DOM/Traversing
2929                  */
2930
2931                 /**
2932                  * Get a set of elements containing all of the unique siblings of each of the
2933                  * matched set of elements, and filtered by an expression.
2934                  *
2935                  * @example $("div").siblings(".selected")
2936                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2937                  * @result [ <p class="selected">Hello Again</p> ]
2938                  *
2939                  * @test isSet( $("#sndp").siblings("[code]").get(), q("sap"), "Check for filtered siblings (has code child element)" ); 
2940                  * @test isSet( $("#sndp").siblings("[a]").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
2941                  *
2942                  * @name siblings
2943                  * @type jQuery
2944                  * @param String expr An expression to filter the sibling Elements with
2945                  * @cat DOM/Traversing
2946                  */
2947                 siblings: jQuery.sibling,
2948
2949
2950                 /**
2951                  * Get a set of elements containing all of the unique children of each of the
2952                  * matched set of elements.
2953                  *
2954                  * @example $("div").children()
2955                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2956                  * @result [ <span>Hello Again</span> ]
2957                  *
2958                  * @name children
2959                  * @type jQuery
2960                  * @cat DOM/Traversing
2961                  */
2962
2963                 /**
2964                  * Get a set of elements containing all of the unique children of each of the
2965                  * matched set of elements, and filtered by an expression.
2966                  *
2967                  * @example $("div").children(".selected")
2968                  * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div>
2969                  * @result [ <p class="selected">Hello Again</p> ]
2970                  *
2971                  * @name children
2972                  * @type jQuery
2973                  * @param String expr An expression to filter the child Elements with
2974                  * @cat DOM/Traversing
2975                  */
2976                 children: "jQuery.sibling(a.firstChild)"
2977         },
2978
2979         each: {
2980
2981                 /**
2982                  * Remove an attribute from each of the matched elements.
2983                  *
2984                  * @example $("input").removeAttr("disabled")
2985                  * @before <input disabled="disabled"/>
2986                  * @result <input/>
2987                  *
2988                  * @name removeAttr
2989                  * @type jQuery
2990                  * @param String name The name of the attribute to remove.
2991                  * @cat DOM
2992                  */
2993                 removeAttr: function( key ) {
2994                         this.removeAttribute( key );
2995                 },
2996
2997                 /**
2998                  * Displays each of the set of matched elements if they are hidden.
2999                  *
3000                  * @example $("p").show()
3001                  * @before <p style="display: none">Hello</p>
3002                  * @result [ <p style="display: block">Hello</p> ]
3003                  *
3004                  * @test var pass = true, div = $("div");
3005                  * div.show().each(function(){
3006                  *   if ( this.style.display == "none" ) pass = false;
3007                  * });
3008                  * ok( pass, "Show" );
3009                  *
3010                  * @name show
3011                  * @type jQuery
3012                  * @cat Effects
3013                  */
3014                 show: function(){
3015                         this.style.display = this.oldblock ? this.oldblock : "";
3016                         if ( jQuery.css(this,"display") == "none" )
3017                                 this.style.display = "block";
3018                 },
3019
3020                 /**
3021                  * Hides each of the set of matched elements if they are shown.
3022                  *
3023                  * @example $("p").hide()
3024                  * @before <p>Hello</p>
3025                  * @result [ <p style="display: none">Hello</p> ]
3026                  *
3027                  * var pass = true, div = $("div");
3028                  * div.hide().each(function(){
3029                  *   if ( this.style.display != "none" ) pass = false;
3030                  * });
3031                  * ok( pass, "Hide" );
3032                  *
3033                  * @name hide
3034                  * @type jQuery
3035                  * @cat Effects
3036                  */
3037                 hide: function(){
3038                         this.oldblock = this.oldblock || jQuery.css(this,"display");
3039                         if ( this.oldblock == "none" )
3040                                 this.oldblock = "block";
3041                         this.style.display = "none";
3042                 },
3043
3044                 /**
3045                  * Toggles each of the set of matched elements. If they are shown,
3046                  * toggle makes them hidden. If they are hidden, toggle
3047                  * makes them shown.
3048                  *
3049                  * @example $("p").toggle()
3050                  * @before <p>Hello</p><p style="display: none">Hello Again</p>
3051                  * @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
3052                  *
3053                  * @name toggle
3054                  * @type jQuery
3055                  * @cat Effects
3056                  */
3057                 toggle: function(){
3058                         jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ].apply( jQuery(this), arguments );
3059                 },
3060
3061                 /**
3062                  * Adds the specified class to each of the set of matched elements.
3063                  *
3064                  * @example $("p").addClass("selected")
3065                  * @before <p>Hello</p>
3066                  * @result [ <p class="selected">Hello</p> ]
3067                  *
3068                  * @test var div = $("div");
3069                  * div.addClass("test");
3070                  * var pass = true;
3071                  * for ( var i = 0; i < div.size(); i++ ) {
3072                  *  if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
3073                  * }
3074                  * ok( pass, "Add Class" );
3075                  *
3076                  * @name addClass
3077                  * @type jQuery
3078                  * @param String class A CSS class to add to the elements
3079                  * @cat DOM
3080                  */
3081                 addClass: function(c){
3082                         jQuery.className.add(this,c);
3083                 },
3084
3085                 /**
3086                  * Removes the specified class from the set of matched elements.
3087                  *
3088                  * @example $("p").removeClass("selected")
3089                  * @before <p class="selected">Hello</p>
3090                  * @result [ <p>Hello</p> ]
3091                  *
3092                  * @test var div = $("div").addClass("test");
3093                  * div.removeClass("test");
3094                  * var pass = true;
3095                  * for ( var i = 0; i < div.size(); i++ ) {
3096                  *  if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
3097                  * }
3098                  * ok( pass, "Remove Class" );
3099                  *
3100                  * @name removeClass
3101                  * @type jQuery
3102                  * @param String class A CSS class to remove from the elements
3103                  * @cat DOM
3104                  */
3105                 removeClass: function(c){
3106                         jQuery.className.remove(this,c);
3107                 },
3108
3109                 /**
3110                  * Adds the specified class if it is present, removes it if it is
3111                  * not present.
3112                  *
3113                  * @example $("p").toggleClass("selected")
3114                  * @before <p>Hello</p><p class="selected">Hello Again</p>
3115                  * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
3116                  *
3117                  * @name toggleClass
3118                  * @type jQuery
3119                  * @param String class A CSS class with which to toggle the elements
3120                  * @cat DOM
3121                  */
3122                 toggleClass: function( c ){
3123                         jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this,c);
3124                 },
3125
3126                 /**
3127                  * Removes all matched elements from the DOM. This does NOT remove them from the
3128                  * jQuery object, allowing you to use the matched elements further.
3129                  *
3130                  * @example $("p").remove();
3131                  * @before <p>Hello</p> how are <p>you?</p>
3132                  * @result how are
3133                  *
3134                  * @name remove
3135                  * @type jQuery
3136                  * @cat DOM/Manipulation
3137                  */
3138
3139                 /**
3140                  * Removes only elements (out of the list of matched elements) that match
3141                  * the specified jQuery expression. This does NOT remove them from the
3142                  * jQuery object, allowing you to use the matched elements further.
3143                  *
3144                  * @example $("p").remove(".hello");
3145                  * @before <p class="hello">Hello</p> how are <p>you?</p>
3146                  * @result how are <p>you?</p>
3147                  *
3148                  * @name remove
3149                  * @type jQuery
3150                  * @param String expr A jQuery expression to filter elements by.
3151                  * @cat DOM/Manipulation
3152                  */
3153                 remove: function(a){
3154                         if ( !a || jQuery.filter( a, [this] ).r )
3155                                 this.parentNode.removeChild( this );
3156                 },
3157
3158                 /**
3159                  * Removes all child nodes from the set of matched elements.
3160                  *
3161                  * @example $("p").empty()
3162                  * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
3163                  * @result [ <p></p> ]
3164                  *
3165                  * @name empty
3166                  * @type jQuery
3167                  * @cat DOM/Manipulation
3168                  */
3169                 empty: function(){
3170                         while ( this.firstChild )
3171                                 this.removeChild( this.firstChild );
3172                 },
3173
3174                 /**
3175                  * Binds a handler to a particular event (like click) for each matched element.
3176                  * The event handler is passed an event object that you can use to prevent
3177                  * default behaviour. To stop both default action and event bubbling, your handler
3178                  * has to return false.
3179                  *
3180                  * @example $("p").bind( "click", function() {
3181                  *   alert( $(this).text() );
3182                  * } )
3183                  * @before <p>Hello</p>
3184                  * @result alert("Hello")
3185                  *
3186                  * @example $("form").bind( "submit", function() { return false; } )
3187                  * @desc Cancel a default action and prevent it from bubbling by returning false
3188                  * from your function.
3189                  *
3190                  * @example $("form").bind( "submit", function(event) {
3191                  *   event.preventDefault();
3192                  * } );
3193                  * @desc Cancel only the default action by using the preventDefault method.
3194                  *
3195                  *
3196                  * @example $("form").bind( "submit", function(event) {
3197                  *   event.stopPropagation();
3198                  * } )
3199                  * @desc Stop only an event from bubbling by using the stopPropagation method.
3200                  *
3201                  * @name bind
3202                  * @type jQuery
3203                  * @param String type An event type
3204                  * @param Function fn A function to bind to the event on each of the set of matched elements
3205                  * @cat Events
3206                  */
3207                 bind: function( type, fn ) {
3208                         if ( fn.constructor == String )
3209                                 fn = new Function("e", ( !fn.indexOf(".") ? "jQuery(this)" : "return " ) + fn);
3210                         jQuery.event.add( this, type, fn );
3211                 },
3212
3213                 /**
3214                  * The opposite of bind, removes a bound event from each of the matched
3215                  * elements. You must pass the identical function that was used in the original
3216                  * bind method.
3217                  *
3218                  * @example $("p").unbind( "click", function() { alert("Hello"); } )
3219                  * @before <p onclick="alert('Hello');">Hello</p>
3220                  * @result [ <p>Hello</p> ]
3221                  *
3222                  * @name unbind
3223                  * @type jQuery
3224                  * @param String type An event type
3225                  * @param Function fn A function to unbind from the event on each of the set of matched elements
3226                  * @cat Events
3227                  */
3228
3229                 /**
3230                  * Removes all bound events of a particular type from each of the matched
3231                  * elements.
3232                  *
3233                  * @example $("p").unbind( "click" )
3234                  * @before <p onclick="alert('Hello');">Hello</p>
3235                  * @result [ <p>Hello</p> ]
3236                  *
3237                  * @name unbind
3238                  * @type jQuery
3239                  * @param String type An event type
3240                  * @cat Events
3241                  */
3242
3243                 /**
3244                  * Removes all bound events from each of the matched elements.
3245                  *
3246                  * @example $("p").unbind()
3247                  * @before <p onclick="alert('Hello');">Hello</p>
3248                  * @result [ <p>Hello</p> ]
3249                  *
3250                  * @name unbind
3251                  * @type jQuery
3252                  * @cat Events
3253                  */
3254                 unbind: function( type, fn ) {
3255                         jQuery.event.remove( this, type, fn );
3256                 },
3257
3258                 /**
3259                  * Trigger a type of event on every matched element.
3260                  *
3261                  * @example $("p").trigger("click")
3262                  * @before <p click="alert('hello')">Hello</p>
3263                  * @result alert('hello')
3264                  *
3265                  * @name trigger
3266                  * @type jQuery
3267                  * @param String type An event type to trigger.
3268                  * @cat Events
3269                  */
3270                 trigger: function( type, data ) {
3271                         jQuery.event.trigger( type, data, this );
3272                 }
3273         }
3274 };
3275
3276 jQuery.init();