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