b094acf0866b78f8f8e54576c30daf7a4da59d5a
[jquery.git] / src / jquery / jquery.js
1 /*
2  * jQuery - New Wave Javascript
3  *
4  * Copyright (c) 2006 John Resig (jquery.com)
5  * Dual licensed under the MIT (MIT-LICENSE.txt)
6  * and GPL (GPL-LICENSE.txt) licenses.
7  *
8  * $Date$
9  * $Rev$
10  */
11
12 // Global undefined variable
13 window.undefined = window.undefined;
14
15 /**
16  * Create a new jQuery Object
17  *
18  * @test ok( Array.prototype.push, "Array.push()" );
19  * @test ok( Function.prototype.apply, "Function.apply()" );
20  * @test ok( document.getElementById, "getElementById" );
21  * @test ok( document.getElementsByTagName, "getElementsByTagName" );
22  * @test ok( RegExp, "RegExp" );
23  * @test ok( jQuery, "jQuery" );
24  * @test ok( $, "$()" );
25  *
26  * @constructor
27  * @private
28  * @name jQuery
29  * @cat Core
30  */
31 function jQuery(a,c) {
32
33         // Shortcut for document ready (because $(document).each() is silly)
34         if ( a && a.constructor == Function && jQuery.fn.ready )
35                 return jQuery(document).ready(a);
36
37         // Make sure that a selection was provided
38         a = a || jQuery.context || document;
39
40         // Watch for when a jQuery object is passed as the selector
41         if ( a.jquery )
42                 return jQuery( jQuery.merge( a, [] ) );
43
44         // Watch for when a jQuery object is passed at the context
45         if ( c && c.jquery )
46                 return jQuery( c ).find(a);
47
48         // If the context is global, return a new object
49         if ( window == this )
50                 return new jQuery(a,c);
51
52         // Handle HTML strings
53         var m = /^[^<]*(<.+>)[^>]*$/.exec(a);
54         if ( m ) a = jQuery.clean( [ m[1] ] );
55
56         // Watch for when an array is passed in
57         this.get( a.constructor == Array || a.length && !a.nodeType && a[0] != undefined && a[0].nodeType ?
58                 // Assume that it is an array of DOM Elements
59                 jQuery.merge( a, [] ) :
60
61                 // Find the matching elements and save them for later
62                 jQuery.find( a, c ) );
63
64   // See if an extra function was provided
65         var fn = arguments[ arguments.length - 1 ];
66
67         // If so, execute it in context
68         if ( fn && fn.constructor == Function )
69                 this.each(fn);
70 }
71
72 // Map over the $ in case of overwrite
73 if ( typeof $ != "undefined" )
74         jQuery._$ = $;
75
76 /**
77  * This function accepts a string containing a CSS selector,
78  * basic XPath, or raw HTML, which is then used to match a set of elements.
79  * The HTML string is different from the traditional selectors in that
80  * it creates the DOM elements representing that HTML string, on the fly,
81  * to be (assumedly) inserted into the document later.
82  *
83  * The core functionality of jQuery centers around this function.
84  * Everything in jQuery is based upon this, or uses this in some way.
85  * The most basic use of this function is to pass in an expression
86  * (usually consisting of CSS or XPath), which then finds all matching
87  * elements and remembers them for later use.
88  *
89  * By default, $() looks for DOM elements within the context of the
90  * current HTML document.
91  *
92  * @example $("div > p")
93  * @desc This finds all p elements that are children of a div element.
94  * @before <p>one</p> <div><p>two</p></div> <p>three</p>
95  * @result [ <p>two</p> ]
96  *
97  * @example $("<div><p>Hello</p></div>").appendTo("#body")
98  * @desc Creates a div element (and all of its contents) dynamically, and appends it to the element with the ID of body.
99  *
100  * @name $
101  * @param String expr An expression to search with, or a string of HTML to create on the fly.
102  * @cat Core
103  * @type jQuery
104  */
105
106 /**
107  * This function accepts a string containing a CSS selector, or
108  * basic XPath, which is then used to match a set of elements with the
109  * context of the specified DOM element, or document
110  *
111  * @example $("div", xml.responseXML)
112  * @desc This finds all div elements within the specified XML document.
113  *
114  * @name $
115  * @param String expr An expression to search with.
116  * @param Element context A DOM Element, or Document, representing the base context.
117  * @cat Core
118  * @type jQuery
119  */
120
121 /**
122  * Wrap jQuery functionality around a specific DOM Element.
123  * This function also accepts XML Documents and Window objects
124  * as valid arguments (even though they are not DOM Elements).
125  *
126  * @example $(document).find("div > p")
127  * @before <p>one</p> <div><p>two</p></div> <p>three</p>
128  * @result [ <p>two</p> ]
129  *
130  * @example $(document.body).background( "black" );
131  * @desc Sets the background color of the page to black.
132  *
133  * @name $
134  * @param Element elem A DOM element to be encapsulated by a jQuery object.
135  * @cat Core
136  * @type jQuery
137  */
138
139 /**
140  * Wrap jQuery functionality around a set of DOM Elements.
141  *
142  * @example $( myForm.elements ).hide()
143  * @desc Hides all the input elements within a form
144  *
145  * @name $
146  * @param Array<Element> elems An array of DOM elements to be encapsulated by a jQuery object.
147  * @cat Core
148  * @type jQuery
149  */
150
151 /**
152  * A shorthand for $(document).ready(), allowing you to bind a function
153  * to be executed when the DOM document has finished loading. This function
154  * behaves just like $(document).ready(), in that it should be used to wrap
155  * all of the other $() operations on your page. While this function is,
156  * technically, chainable - there really isn't much use for chaining against it.
157  *
158  * @example $(function(){
159  *   // Document is ready
160  * });
161  * @desc Executes the function when the DOM is ready to be used.
162  *
163  * @name $
164  * @param Function fn The function to execute when the DOM is ready.
165  * @cat Core
166  * @type jQuery
167  */
168
169 /**
170  * A means of creating a cloned copy of a jQuery object. This function
171  * copies the set of matched elements from one jQuery object and creates
172  * another, new, jQuery object containing the same elements.
173  *
174  * @example var div = $("div");
175  * $( div ).find("p");
176  * @desc Locates all p elements with all div elements, without disrupting the original jQuery object contained in 'div' (as would normally be the case if a simple div.find("p") was done).
177  *
178  * @name $
179  * @param jQuery obj The jQuery object to be cloned.
180  * @cat Core
181  * @type jQuery
182  */
183
184 // Map the jQuery namespace to the '$' one
185 var $ = jQuery;
186
187 jQuery.fn = jQuery.prototype = {
188         /**
189          * The current SVN version of jQuery.
190          *
191          * @private
192          * @property
193          * @name jquery
194          * @type String
195          * @cat Core
196          */
197         jquery: "$Rev$",
198
199         /**
200          * The number of elements currently matched.
201          *
202          * @example $("img").length;
203          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
204          * @result 2
205          *
206          * @test cmpOK( $("div").length, "==", 2, "Get Number of Elements Found" );
207          *
208          * @property
209          * @name length
210          * @type Number
211          * @cat Core
212          */
213
214         /**
215          * The number of elements currently matched.
216          *
217          * @example $("img").size();
218          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
219          * @result 2
220          *
221          * @test cmpOK( $("div").size(), "==", 2, "Get Number of Elements Found" );
222          *
223          * @name size
224          * @type Number
225          * @cat Core
226          */
227         size: function() {
228                 return this.length;
229         },
230
231         /**
232          * Access all matched elements. This serves as a backwards-compatible
233          * way of accessing all matched elements (other than the jQuery object
234          * itself, which is, in fact, an array of elements).
235          *
236          * @example $("img").get();
237          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
238          * @result [ <img src="test1.jpg"/> <img src="test2.jpg"/> ]
239          *
240          * @test isSet( $("div").get(), q("main","foo"), "Get All Elements" );
241          *
242          * @name get
243          * @type Array<Element>
244          * @cat Core
245          */
246
247         /**
248          * Access a single matched element. num is used to access the
249          * Nth element matched.
250          *
251          * @example $("img").get(1);
252          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
253          * @result [ <img src="test1.jpg"/> ]
254          *
255          * @test cmpOK( $("div").get(0), "==", document.getElementById("main"), "Get A Single Element" );
256          *
257          * @name get
258          * @type Element
259          * @param Number num Access the element in the Nth position.
260          * @cat Core
261          */
262
263         /**
264          * Set the jQuery object to an array of elements.
265          *
266          * @example $("img").get([ document.body ]);
267          * @result $("img").get() == [ document.body ]
268          *
269          * @private
270          * @name get
271          * @type jQuery
272          * @param Elements elems An array of elements
273          * @cat Core
274          */
275         get: function( num ) {
276                 // Watch for when an array (of elements) is passed in
277                 if ( num && num.constructor == Array ) {
278
279                         // Use a tricky hack to make the jQuery object
280                         // look and feel like an array
281                         this.length = 0;
282                         [].push.apply( this, num );
283
284                         return this;
285                 } else
286                         return num == undefined ?
287
288                                 // Return a 'clean' array
289                                 jQuery.merge( this, [] ) :
290
291                                 // Return just the object
292                                 this[num];
293         },
294
295         /**
296          * Execute a function within the context of every matched element.
297          * This means that every time the passed-in function is executed
298          * (which is once for every element matched) the 'this' keyword
299          * points to the specific element.
300          *
301          * Additionally, the function, when executed, is passed a single
302          * argument representing the position of the element in the matched
303          * set.
304          *
305          * @example $("img").each(function(){
306          *   this.src = "test.jpg";
307          * });
308          * @before <img/> <img/>
309          * @result <img src="test.jpg"/> <img src="test.jpg"/>
310          *
311          * @example $("img").each(function(i){
312          *   alert( "Image #" + i + " is " + this );
313          * });
314          * @before <img/> <img/>
315          * @result <img src="test.jpg"/> <img src="test.jpg"/>
316          *
317          * @test var div = $("div");
318          * div.each(function(){this.foo = 'zoo';});
319          * var pass = true;
320          * for ( var i = 0; i < div.size(); i++ ) {
321          *   if ( div.get(i).foo != "zoo" ) pass = false;
322          * }
323          * ok( pass, "Execute a function, Relative" );
324          *
325          * @name each
326          * @type jQuery
327          * @param Function fn A function to execute
328          * @cat Core
329          */
330         each: function( fn, args ) {
331                 return jQuery.each( this, fn, args );
332         },
333
334         /**
335          * Searches every matched element for the object and returns
336          * the index of the element, if found, starting with zero. 
337          * Returns -1 if the object wasn't found.
338          *
339          * @example $("*").index(document.getElementById('foobar')) 
340          * @before <div id="foobar"></div><b></b><span id="foo"></span>
341          * @result 0
342          *
343          * @example $("*").index(document.getElementById('foo')) 
344          * @before <div id="foobar"></div><b></b><span id="foo"></span>
345          * @result 2
346          *
347          * @example $("*").index(document.getElementById('bar')) 
348          * @before <div id="foobar"></div><b></b><span id="foo"></span>
349          * @result -1
350          *
351          * @test ok( $([window, document]).index(window) == 0, "Check for index of elements" );
352          * @test ok( $([window, document]).index(document) == 1, "Check for index of elements" );
353          * @test var inputElements = $('#radio1,#radio2,#check1,#check2');
354          * @test ok( inputElements.index(document.getElementById('radio1')) == 0, "Check for index of elements" );
355          * @test ok( inputElements.index(document.getElementById('radio2')) == 1, "Check for index of elements" );
356          * @test ok( inputElements.index(document.getElementById('check1')) == 2, "Check for index of elements" );
357          * @test ok( inputElements.index(document.getElementById('check2')) == 3, "Check for index of elements" );
358          * @test ok( inputElements.index(window) == -1, "Check for not found index" );
359          * @test ok( inputElements.index(document) == -1, "Check for not found index" );
360          * 
361          * @name index
362          * @type Number
363          * @param Object obj Object to search for
364          * @cat Core
365          */
366         index: function( obj ) {
367                 var pos = -1;
368                 this.each(function(i){
369                         if ( this == obj ) pos = i;
370                 });
371                 return pos;
372         },
373
374         /**
375          * Access a property on the first matched element.
376          * This method makes it easy to retrieve a property value
377          * from the first matched element.
378          *
379          * @example $("img").attr("src");
380          * @before <img src="test.jpg"/>
381          * @result test.jpg
382          *
383          * @test ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );
384          * @test ok( $('#text1').attr('type') == "text", 'Check for type attribute' );
385          * @test ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );
386          * @test ok( $('#check1').attr('type') == "checkbox", 'Check for type attribute' );
387          * @test ok( $('#simon1').attr('rel') == "bookmark", 'Check for rel attribute' );
388          * @test ok( $('#google').attr('title') == "Google!", 'Check for title attribute' );
389          * @test ok( $('#mark').attr('hreflang') == "en", 'Check for hreflang attribute' );
390          * @test ok( $('#en').attr('lang') == "en", 'Check for lang attribute' );
391          * @test ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
392          * @test ok( $('#name').attr('name') == "name", 'Check for name attribute' );
393          * @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 cmpOK($("#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 cmpOK( $("*").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 cmpOK( 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\\]", 1 ],
1774
1775                 // Match: [div], [div p]
1776                 [ "(\\[)Q\\]", 0 ],
1777
1778                 // Match: :contains('foo')
1779                 [ "(:)S\\(Q\\)", 0 ],
1780
1781                 // Match: :even, :last-chlid
1782                 [ "([:.#]*)S", 0 ]
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                                 var re = new RegExp( "^" + p[i][0]
1796
1797                                         // Look for a string-like sequence
1798                                         .replace( 'S', "([a-z*_-][a-z0-9_-]*)" )
1799
1800                                         // Look for something (optionally) enclosed with quotes
1801                                         .replace( 'Q', " *'?\"?([^'\"]*?)'?\"? *" ), "i" );
1802
1803                                 var m = re.exec( t );
1804
1805                                 if ( m ) {
1806                                         // Re-organize the match
1807                                         if ( p[i][1] )
1808                                                 m = ["", m[1], m[3], m[2], m[4]];
1809
1810                                         // Remove what we just matched
1811                                         t = t.replace( re, "" );
1812
1813                                         break;
1814                                 }
1815                         }
1816
1817                         // :not() is a special case that can be optomized by
1818                         // keeping it out of the expression list
1819                         if ( m[1] == ":" && m[2] == "not" )
1820                                 r = jQuery.filter(m[3],r,false).r;
1821
1822                         // Otherwise, find the expression to execute
1823                         else {
1824                                 var f = jQuery.expr[m[1]];
1825                                 if ( f.constructor != String )
1826                                         f = jQuery.expr[m[1]][m[2]];
1827
1828                                 // Build a custom macro to enclose it
1829                                 eval("f = function(a,i){" +
1830                                         ( m[1] == "@" ? "z=jQuery.attr(a,m[3]);" : "" ) +
1831                                         "return " + f + "}");
1832
1833                                 // Execute it against the current filter
1834                                 r = g( r, f );
1835                         }
1836                 }
1837
1838                 // Return an array of filtered elements (r)
1839                 // and the modified expression string (t)
1840                 return { r: r, t: t };
1841         },
1842
1843         /**
1844          * Remove the whitespace from the beginning and end of a string.
1845          *
1846          * @example $.trim("  hello, how are you?  ");
1847          * @result "hello, how are you?"
1848          *
1849          * @name $.trim
1850          * @type String
1851          * @param String str The string to trim.
1852          * @cat Javascript
1853          */
1854         trim: function(t){
1855                 return t.replace(/^\s+|\s+$/g, "");
1856         },
1857
1858         /**
1859          * All ancestors of a given element.
1860          *
1861          * @private
1862          * @name $.parents
1863          * @type Array<Element>
1864          * @param Element elem The element to find the ancestors of.
1865          * @cat DOM/Traversing
1866          */
1867         parents: function( elem ){
1868                 var matched = [];
1869                 var cur = elem.parentNode;
1870                 while ( cur && cur != document ) {
1871                         matched.push( cur );
1872                         cur = cur.parentNode;
1873                 }
1874                 return matched;
1875         },
1876
1877         /**
1878          * All elements on a specified axis.
1879          *
1880          * @private
1881          * @name $.sibling
1882          * @type Array
1883          * @param Element elem The element to find all the siblings of (including itself).
1884          * @cat DOM/Traversing
1885          */
1886         sibling: function(elem, pos, not) {
1887                 var elems = [];
1888
1889                 var siblings = elem.parentNode.childNodes;
1890                 for ( var i = 0; i < siblings.length; i++ ) {
1891                         if ( not === true && siblings[i] == elem ) continue;
1892
1893                         if ( siblings[i].nodeType == 1 )
1894                                 elems.push( siblings[i] );
1895                         if ( siblings[i] == elem )
1896                                 elems.n = elems.length - 1;
1897                 }
1898
1899                 return jQuery.extend( elems, {
1900                         last: elems.n == elems.length - 1,
1901                         cur: pos == "even" && elems.n % 2 == 0 || pos == "odd" && elems.n % 2 || elems[pos] == elem,
1902                         prev: elems[elems.n - 1],
1903                         next: elems[elems.n + 1]
1904                 });
1905         },
1906
1907         /**
1908          * Merge two arrays together, removing all duplicates. The final order
1909          * or the new array is: All the results from the first array, followed
1910          * by the unique results from the second array.
1911          *
1912          * @example $.merge( [0,1,2], [2,3,4] )
1913          * @result [0,1,2,3,4]
1914          *
1915          * @example $.merge( [3,2,1], [4,3,2] )
1916          * @result [3,2,1,4]
1917          *
1918          * @name $.merge
1919          * @type Array
1920          * @param Array first The first array to merge.
1921          * @param Array second The second array to merge.
1922          * @cat Javascript
1923          */
1924         merge: function(first, second) {
1925                 var result = [];
1926
1927                 // Move b over to the new array (this helps to avoid
1928                 // StaticNodeList instances)
1929                 for ( var k = 0; k < first.length; k++ )
1930                         result[k] = first[k];
1931
1932                 // Now check for duplicates between a and b and only
1933                 // add the unique items
1934                 for ( var i = 0; i < second.length; i++ ) {
1935                         var noCollision = true;
1936
1937                         // The collision-checking process
1938                         for ( var j = 0; j < first.length; j++ )
1939                                 if ( second[i] == first[j] )
1940                                         noCollision = false;
1941
1942                         // If the item is unique, add it
1943                         if ( noCollision )
1944                                 result.push( second[i] );
1945                 }
1946
1947                 return result;
1948         },
1949
1950         /**
1951          * Filter items out of an array, by using a filter function.
1952          * The specified function will be passed two arguments: The
1953          * current array item and the index of the item in the array. The
1954          * function should return 'true' if you wish to keep the item in
1955          * the array, false if it should be removed.
1956          *
1957          * @example $.grep( [0,1,2], function(i){
1958          *   return i > 0;
1959          * });
1960          * @result [1, 2]
1961          *
1962          * @name $.grep
1963          * @type Array
1964          * @param Array array The Array to find items in.
1965          * @param Function fn The function to process each item against.
1966          * @param Boolean inv Invert the selection - select the opposite of the function.
1967          * @cat Javascript
1968          */
1969         grep: function(elems, fn, inv) {
1970                 // If a string is passed in for the function, make a function
1971                 // for it (a handy shortcut)
1972                 if ( fn.constructor == String )
1973                         fn = new Function("a","i","return " + fn);
1974
1975                 var result = [];
1976
1977                 // Go through the array, only saving the items
1978                 // that pass the validator function
1979                 for ( var i = 0; i < elems.length; i++ )
1980                         if ( !inv && fn(elems[i],i) || inv && !fn(elems[i],i) )
1981                                 result.push( elems[i] );
1982
1983                 return result;
1984         },
1985
1986         /**
1987          * Translate all items in an array to another array of items. 
1988          * The translation function that is provided to this method is 
1989          * called for each item in the array and is passed one argument: 
1990          * The item to be translated. The function can then return:
1991          * The translated value, 'null' (to remove the item), or 
1992          * an array of values - which will be flattened into the full array.
1993          *
1994          * @example $.map( [0,1,2], function(i){
1995          *   return i + 4;
1996          * });
1997          * @result [4, 5, 6]
1998          *
1999          * @example $.map( [0,1,2], function(i){
2000          *   return i > 0 ? i + 1 : null;
2001          * });
2002          * @result [2, 3]
2003          * 
2004          * @example $.map( [0,1,2], function(i){
2005          *   return [ i, i + 1 ];
2006          * });
2007          * @result [0, 1, 1, 2, 2, 3]
2008          *
2009          * @name $.map
2010          * @type Array
2011          * @param Array array The Array to translate.
2012          * @param Function fn The function to process each item against.
2013          * @cat Javascript
2014          */
2015         map: function(elems, fn) {
2016                 // If a string is passed in for the function, make a function
2017                 // for it (a handy shortcut)
2018                 if ( fn.constructor == String )
2019                         fn = new Function("a","return " + fn);
2020
2021                 var result = [];
2022
2023                 // Go through the array, translating each of the items to their
2024                 // new value (or values).
2025                 for ( var i = 0; i < elems.length; i++ ) {
2026                         var val = fn(elems[i],i);
2027
2028                         if ( val !== null && val != undefined ) {
2029                                 if ( val.constructor != Array ) val = [val];
2030                                 result = jQuery.merge( result, val );
2031                         }
2032                 }
2033
2034                 return result;
2035         },
2036
2037         /*
2038          * A number of helper functions used for managing events.
2039          * Many of the ideas behind this code orignated from Dean Edwards' addEvent library.
2040          */
2041         event: {
2042
2043                 // Bind an event to an element
2044                 // Original by Dean Edwards
2045                 add: function(element, type, handler) {
2046                         // For whatever reason, IE has trouble passing the window object
2047                         // around, causing it to be cloned in the process
2048                         if ( jQuery.browser.msie && element.setInterval != undefined )
2049                                 element = window;
2050
2051                         // Make sure that the function being executed has a unique ID
2052                         if ( !handler.guid )
2053                                 handler.guid = this.guid++;
2054
2055                         // Init the element's event structure
2056                         if (!element.events)
2057                                 element.events = {};
2058
2059                         // Get the current list of functions bound to this event
2060                         var handlers = element.events[type];
2061
2062                         // If it hasn't been initialized yet
2063                         if (!handlers) {
2064                                 // Init the event handler queue
2065                                 handlers = element.events[type] = {};
2066
2067                                 // Remember an existing handler, if it's already there
2068                                 if (element["on" + type])
2069                                         handlers[0] = element["on" + type];
2070                         }
2071
2072                         // Add the function to the element's handler list
2073                         handlers[handler.guid] = handler;
2074
2075                         // And bind the global event handler to the element
2076                         element["on" + type] = this.handle;
2077
2078                         // Remember the function in a global list (for triggering)
2079                         if (!this.global[type])
2080                                 this.global[type] = [];
2081                         this.global[type].push( element );
2082                 },
2083
2084                 guid: 1,
2085                 global: {},
2086
2087                 // Detach an event or set of events from an element
2088                 remove: function(element, type, handler) {
2089                         if (element.events)
2090                                 if (type && element.events[type])
2091                                         if ( handler )
2092                                                 delete element.events[type][handler.guid];
2093                                         else
2094                                                 for ( var i in element.events[type] )
2095                                                         delete element.events[type][i];
2096                                 else
2097                                         for ( var j in element.events )
2098                                                 this.remove( element, j );
2099                 },
2100
2101                 trigger: function(type,data,element) {
2102                         // Touch up the incoming data
2103                         data = data || [];
2104
2105                         // Handle a global trigger
2106                         if ( !element ) {
2107                                 var g = this.global[type];
2108                                 if ( g )
2109                                         for ( var i = 0; i < g.length; i++ )
2110                                                 this.trigger( type, data, g[i] );
2111
2112                         // Handle triggering a single element
2113                         } else if ( element["on" + type] ) {
2114                                 // Pass along a fake event
2115                                 data.unshift( this.fix({ type: type, target: element }) );
2116
2117                                 // Trigger the event
2118                                 element["on" + type].apply( element, data );
2119                         }
2120                 },
2121
2122                 handle: function(event) {
2123                         if ( typeof jQuery == "undefined" ) return;
2124
2125                         event = event || jQuery.event.fix( window.event );
2126
2127                         // If no correct event was found, fail
2128                         if ( !event ) return;
2129
2130                         var returnValue = true;
2131
2132                         var c = this.events[event.type];
2133
2134                         var args = [].slice.call( arguments, 1 );
2135                         args.unshift( event );
2136
2137                         for ( var j in c ) {
2138                                 if ( c[j].apply( this, args ) === false ) {
2139                                         event.preventDefault();
2140                                         event.stopPropagation();
2141                                         returnValue = false;
2142                                 }
2143                         }
2144
2145                         return returnValue;
2146                 },
2147
2148                 fix: function(event) {
2149                         if ( event ) {
2150                                 event.preventDefault = function() {
2151                                         this.returnValue = false;
2152                                 };
2153
2154                                 event.stopPropagation = function() {
2155                                         this.cancelBubble = true;
2156                                 };
2157                         }
2158
2159                         return event;
2160                 }
2161
2162         }
2163 });
2164
2165 new function() {
2166         var b = navigator.userAgent.toLowerCase();
2167
2168         // Figure out what browser is being used
2169         jQuery.browser = {
2170                 safari: /webkit/.test(b),
2171                 opera: /opera/.test(b),
2172                 msie: /msie/.test(b) && !/opera/.test(b),
2173                 mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b)
2174         };
2175
2176         // Check to see if the W3C box model is being used
2177         jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
2178 };
2179
2180 jQuery.macros = {
2181         to: {
2182                 /**
2183                  * Append all of the matched elements to another, specified, set of elements.
2184                  * This operation is, essentially, the reverse of doing a regular
2185                  * $(A).append(B), in that instead of appending B to A, you're appending
2186                  * A to B.
2187                  *
2188                  * @example $("p").appendTo("#foo");
2189                  * @before <p>I would like to say: </p><div id="foo"></div>
2190                  * @result <div id="foo"><p>I would like to say: </p></div>
2191                  *
2192                  * @name appendTo
2193                  * @type jQuery
2194                  * @param String expr A jQuery expression of elements to match.
2195                  * @cat DOM/Manipulation
2196                  */
2197                 appendTo: "append",
2198
2199                 /**
2200                  * Prepend all of the matched elements to another, specified, set of elements.
2201                  * This operation is, essentially, the reverse of doing a regular
2202                  * $(A).prepend(B), in that instead of prepending B to A, you're prepending
2203                  * A to B.
2204                  *
2205                  * @example $("p").prependTo("#foo");
2206                  * @before <p>I would like to say: </p><div id="foo"><b>Hello</b></div>
2207                  * @result <div id="foo"><p>I would like to say: </p><b>Hello</b></div>
2208                  *
2209                  * @name prependTo
2210                  * @type jQuery
2211                  * @param String expr A jQuery expression of elements to match.
2212                  * @cat DOM/Manipulation
2213                  */
2214                 prependTo: "prepend",
2215
2216                 /**
2217                  * Insert all of the matched elements before another, specified, set of elements.
2218                  * This operation is, essentially, the reverse of doing a regular
2219                  * $(A).before(B), in that instead of inserting B before A, you're inserting
2220                  * A before B.
2221                  *
2222                  * @example $("p").insertBefore("#foo");
2223                  * @before <div id="foo">Hello</div><p>I would like to say: </p>
2224                  * @result <p>I would like to say: </p><div id="foo">Hello</div>
2225                  *
2226                  * @name insertBefore
2227                  * @type jQuery
2228                  * @param String expr A jQuery expression of elements to match.
2229                  * @cat DOM/Manipulation
2230                  */
2231                 insertBefore: "before",
2232
2233                 /**
2234                  * Insert all of the matched elements after another, specified, set of elements.
2235                  * This operation is, essentially, the reverse of doing a regular
2236                  * $(A).after(B), in that instead of inserting B after A, you're inserting
2237                  * A after B.
2238                  *
2239                  * @example $("p").insertAfter("#foo");
2240                  * @before <p>I would like to say: </p><div id="foo">Hello</div>
2241                  * @result <div id="foo">Hello</div><p>I would like to say: </p>
2242                  *
2243                  * @name insertAfter
2244                  * @type jQuery
2245                  * @param String expr A jQuery expression of elements to match.
2246                  * @cat DOM/Manipulation
2247                  */
2248                 insertAfter: "after"
2249         },
2250
2251         /**
2252          * Get the current CSS width of the first matched element.
2253          *
2254          * @example $("p").width();
2255          * @before <p>This is just a test.</p>
2256          * @result "300px"
2257          *
2258          * @name width
2259          * @type String
2260          * @cat CSS
2261          */
2262
2263         /**
2264          * Set the CSS width of every matched element. Be sure to include
2265          * the "px" (or other unit of measurement) after the number that you
2266          * specify, otherwise you might get strange results.
2267          *
2268          * @example $("p").width("20px");
2269          * @before <p>This is just a test.</p>
2270          * @result <p style="width:20px;">This is just a test.</p>
2271          *
2272          * @name width
2273          * @type jQuery
2274          * @param String val Set the CSS property to the specified value.
2275          * @cat CSS
2276          */
2277
2278         /**
2279          * Get the current CSS height of the first matched element.
2280          *
2281          * @example $("p").height();
2282          * @before <p>This is just a test.</p>
2283          * @result "14px"
2284          *
2285          * @name height
2286          * @type String
2287          * @cat CSS
2288          */
2289
2290         /**
2291          * Set the CSS height of every matched element. Be sure to include
2292          * the "px" (or other unit of measurement) after the number that you
2293          * specify, otherwise you might get strange results.
2294          *
2295          * @example $("p").height("20px");
2296          * @before <p>This is just a test.</p>
2297          * @result <p style="height:20px;">This is just a test.</p>
2298          *
2299          * @name height
2300          * @type jQuery
2301          * @param String val Set the CSS property to the specified value.
2302          * @cat CSS
2303          */
2304
2305         /**
2306          * Get the current CSS top of the first matched element.
2307          *
2308          * @example $("p").top();
2309          * @before <p>This is just a test.</p>
2310          * @result "0px"
2311          *
2312          * @name top
2313          * @type String
2314          * @cat CSS
2315          */
2316
2317         /**
2318          * Set the CSS top of every matched element. Be sure to include
2319          * the "px" (or other unit of measurement) after the number that you
2320          * specify, otherwise you might get strange results.
2321          *
2322          * @example $("p").top("20px");
2323          * @before <p>This is just a test.</p>
2324          * @result <p style="top:20px;">This is just a test.</p>
2325          *
2326          * @name top
2327          * @type jQuery
2328          * @param String val Set the CSS property to the specified value.
2329          * @cat CSS
2330          */
2331
2332         /**
2333          * Get the current CSS left of the first matched element.
2334          *
2335          * @example $("p").left();
2336          * @before <p>This is just a test.</p>
2337          * @result "0px"
2338          *
2339          * @name left
2340          * @type String
2341          * @cat CSS
2342          */
2343
2344         /**
2345          * Set the CSS left of every matched element. Be sure to include
2346          * the "px" (or other unit of measurement) after the number that you
2347          * specify, otherwise you might get strange results.
2348          *
2349          * @example $("p").left("20px");
2350          * @before <p>This is just a test.</p>
2351          * @result <p style="left:20px;">This is just a test.</p>
2352          *
2353          * @name left
2354          * @type jQuery
2355          * @param String val Set the CSS property to the specified value.
2356          * @cat CSS
2357          */
2358
2359         /**
2360          * Get the current CSS position of the first matched element.
2361          *
2362          * @example $("p").position();
2363          * @before <p>This is just a test.</p>
2364          * @result "static"
2365          *
2366          * @name position
2367          * @type String
2368          * @cat CSS
2369          */
2370
2371         /**
2372          * Set the CSS position of every matched element.
2373          *
2374          * @example $("p").position("relative");
2375          * @before <p>This is just a test.</p>
2376          * @result <p style="position:relative;">This is just a test.</p>
2377          *
2378          * @name position
2379          * @type jQuery
2380          * @param String val Set the CSS property to the specified value.
2381          * @cat CSS
2382          */
2383
2384         /**
2385          * Get the current CSS float of the first matched element.
2386          *
2387          * @example $("p").float();
2388          * @before <p>This is just a test.</p>
2389          * @result "none"
2390          *
2391          * @name float
2392          * @type String
2393          * @cat CSS
2394          */
2395
2396         /**
2397          * Set the CSS float of every matched element.
2398          *
2399          * @example $("p").float("left");
2400          * @before <p>This is just a test.</p>
2401          * @result <p style="float:left;">This is just a test.</p>
2402          *
2403          * @name float
2404          * @type jQuery
2405          * @param String val Set the CSS property to the specified value.
2406          * @cat CSS
2407          */
2408
2409         /**
2410          * Get the current CSS overflow of the first matched element.
2411          *
2412          * @example $("p").overflow();
2413          * @before <p>This is just a test.</p>
2414          * @result "none"
2415          *
2416          * @name overflow
2417          * @type String
2418          * @cat CSS
2419          */
2420
2421         /**
2422          * Set the CSS overflow of every matched element.
2423          *
2424          * @example $("p").overflow("auto");
2425          * @before <p>This is just a test.</p>
2426          * @result <p style="overflow:auto;">This is just a test.</p>
2427          *
2428          * @name overflow
2429          * @type jQuery
2430          * @param String val Set the CSS property to the specified value.
2431          * @cat CSS
2432          */
2433
2434         /**
2435          * Get the current CSS color of the first matched element.
2436          *
2437          * @example $("p").color();
2438          * @before <p>This is just a test.</p>
2439          * @result "black"
2440          *
2441          * @name color
2442          * @type String
2443          * @cat CSS
2444          */
2445
2446         /**
2447          * Set the CSS color of every matched element.
2448          *
2449          * @example $("p").color("blue");
2450          * @before <p>This is just a test.</p>
2451          * @result <p style="color:blue;">This is just a test.</p>
2452          *
2453          * @name color
2454          * @type jQuery
2455          * @param String val Set the CSS property to the specified value.
2456          * @cat CSS
2457          */
2458
2459         /**
2460          * Get the current CSS background of the first matched element.
2461          *
2462          * @example $("p").background();
2463          * @before <p style="background:blue;">This is just a test.</p>
2464          * @result "blue"
2465          *
2466          * @name background
2467          * @type String
2468          * @cat CSS
2469          */
2470
2471         /**
2472          * Set the CSS background of every matched element.
2473          *
2474          * @example $("p").background("blue");
2475          * @before <p>This is just a test.</p>
2476          * @result <p style="background:blue;">This is just a test.</p>
2477          *
2478          * @name background
2479          * @type jQuery
2480          * @param String val Set the CSS property to the specified value.
2481          * @cat CSS
2482          */
2483
2484         css: "width,height,top,left,position,float,overflow,color,background".split(","),
2485
2486         /**
2487          * Reduce the set of matched elements to a single element.
2488          * The position of the element in the set of matched elements
2489          * starts at 0 and goes to length - 1.
2490          *
2491          * @example $("p").eq(1)
2492          * @before <p>This is just a test.</p><p>So is this</p>
2493          * @result [ <p>So is this</p> ]
2494          *
2495          * @name eq
2496          * @type jQuery
2497          * @param Number pos The index of the element that you wish to limit to.
2498          * @cat Core
2499          */
2500
2501         /**
2502          * Reduce the set of matched elements to all elements before a given position.
2503          * The position of the element in the set of matched elements
2504          * starts at 0 and goes to length - 1.
2505          *
2506          * @example $("p").lt(1)
2507          * @before <p>This is just a test.</p><p>So is this</p>
2508          * @result [ <p>This is just a test.</p> ]
2509          *
2510          * @name lt
2511          * @type jQuery
2512          * @param Number pos Reduce the set to all elements below this position.
2513          * @cat Core
2514          */
2515
2516         /**
2517          * Reduce the set of matched elements to all elements after a given position.
2518          * The position of the element in the set of matched elements
2519          * starts at 0 and goes to length - 1.
2520          *
2521          * @example $("p").gt(0)
2522          * @before <p>This is just a test.</p><p>So is this</p>
2523          * @result [ <p>So is this</p> ]
2524          *
2525          * @name gt
2526          * @type jQuery
2527          * @param Number pos Reduce the set to all elements after this position.
2528          * @cat Core
2529          */
2530
2531         /**
2532          * Filter the set of elements to those that contain the specified text.
2533          *
2534          * @example $("p").contains("test")
2535          * @before <p>This is just a test.</p><p>So is this</p>
2536          * @result [ <p>This is just a test.</p> ]
2537          *
2538          * @name contains
2539          * @type jQuery
2540          * @param String str The string that will be contained within the text of an element.
2541          * @cat DOM/Traversing
2542          */
2543
2544         filter: [ "eq", "lt", "gt", "contains" ],
2545
2546         attr: {
2547                 /**
2548                  * Get the current value of the first matched element.
2549                  *
2550                  * @example $("input").val();
2551                  * @before <input type="text" value="some text"/>
2552                  * @result "some text"
2553                  *
2554                  * @test ok( $("#text1").val() == "Test", "Check for value of input element" );
2555                  * @test ok( !$("#text1").val() == "", "Check for value of input element" );
2556                  *
2557                  * @name val
2558                  * @type String
2559                  * @cat DOM/Attributes
2560                  */
2561
2562                 /**
2563                  * Set the value of every matched element.
2564                  *
2565                  * @example $("input").value("test");
2566                  * @before <input type="text" value="some text"/>
2567                  * @result <input type="text" value="test"/>
2568                  *
2569                  * @test document.getElementById('text1').value = "bla";
2570                  * ok( $("#text1").val() == "bla", "Check for modified value of input element" );
2571                  * $("#text1").val('test');
2572                  * ok ( document.getElementById('text1').value == "test", "Check for modified (via val(String)) value of input element" );
2573                  *
2574                  * @name val
2575                  * @type jQuery
2576                  * @param String val Set the property to the specified value.
2577                  * @cat DOM/Attributes
2578                  */
2579                 val: "value",
2580
2581                 /**
2582                  * Get the html contents of the first matched element.
2583                  *
2584                  * @example $("div").html();
2585                  * @before <div><input/></div>
2586                  * @result <input/>
2587                  *
2588                  * @name html
2589                  * @type String
2590                  * @cat DOM/Attributes
2591                  */
2592
2593                 /**
2594                  * Set the html contents of every matched element.
2595                  *
2596                  * @example $("div").html("<b>new stuff</b>");
2597                  * @before <div><input/></div>
2598                  * @result <div><b>new stuff</b></div>
2599                  *
2600                  * @test var div = $("div");
2601                  * div.html("<b>test</b>");
2602                  * var pass = true;
2603                  * for ( var i = 0; i < div.size(); i++ ) {
2604                  *   if ( div.get(i).childNodes.length == 0 ) pass = false;
2605                  * }
2606                  * ok( pass, "Set HTML" );
2607                  *
2608                  * @name html
2609                  * @type jQuery
2610                  * @param String val Set the html contents to the specified value.
2611                  * @cat DOM/Attributes
2612                  */
2613                 html: "innerHTML",
2614
2615                 /**
2616                  * Get the current id of the first matched element.
2617                  *
2618                  * @example $("input").id();
2619                  * @before <input type="text" id="test" value="some text"/>
2620                  * @result "test"
2621                  *
2622                  * @name id
2623                  * @type String
2624                  * @cat DOM/Attributes
2625                  */
2626
2627                 /**
2628                  * Set the id of every matched element.
2629                  *
2630                  * @example $("input").id("newid");
2631                  * @before <input type="text" id="test" value="some text"/>
2632                  * @result <input type="text" id="newid" value="some text"/>
2633                  *
2634                  * @name id
2635                  * @type jQuery
2636                  * @param String val Set the property to the specified value.
2637                  * @cat DOM/Attributes
2638                  */
2639                 id: null,
2640
2641                 /**
2642                  * Get the current title of the first matched element.
2643                  *
2644                  * @example $("img").title();
2645                  * @before <img src="test.jpg" title="my image"/>
2646                  * @result "my image"
2647                  *
2648                  * @name title
2649                  * @type String
2650                  * @cat DOM/Attributes
2651                  */
2652
2653                 /**
2654                  * Set the title of every matched element.
2655                  *
2656                  * @example $("img").title("new title");
2657                  * @before <img src="test.jpg" title="my image"/>
2658                  * @result <img src="test.jpg" title="new image"/>
2659                  *
2660                  * @name title
2661                  * @type jQuery
2662                  * @param String val Set the property to the specified value.
2663                  * @cat DOM/Attributes
2664                  */
2665                 title: null,
2666
2667                 /**
2668                  * Get the current name of the first matched element.
2669                  *
2670                  * @example $("input").name();
2671                  * @before <input type="text" name="username"/>
2672                  * @result "username"
2673                  *
2674                  * @name name
2675                  * @type String
2676                  * @cat DOM/Attributes
2677                  */
2678
2679                 /**
2680                  * Set the name of every matched element.
2681                  *
2682                  * @example $("input").name("user");
2683                  * @before <input type="text" name="username"/>
2684                  * @result <input type="text" name="user"/>
2685                  *
2686                  * @name name
2687                  * @type jQuery
2688                  * @param String val Set the property to the specified value.
2689                  * @cat DOM/Attributes
2690                  */
2691                 name: null,
2692
2693                 /**
2694                  * Get the current href of the first matched element.
2695                  *
2696                  * @example $("a").href();
2697                  * @before <a href="test.html">my link</a>
2698                  * @result "test.html"
2699                  *
2700                  * @name href
2701                  * @type String
2702                  * @cat DOM/Attributes
2703                  */
2704
2705                 /**
2706                  * Set the href of every matched element.
2707                  *
2708                  * @example $("a").href("test2.html");
2709                  * @before <a href="test.html">my link</a>
2710                  * @result <a href="test2.html">my link</a>
2711                  *
2712                  * @name href
2713                  * @type jQuery
2714                  * @param String val Set the property to the specified value.
2715                  * @cat DOM/Attributes
2716                  */
2717                 href: null,
2718
2719                 /**
2720                  * Get the current src of the first matched element.
2721                  *
2722                  * @example $("img").src();
2723                  * @before <img src="test.jpg" title="my image"/>
2724                  * @result "test.jpg"
2725                  *
2726                  * @name src
2727                  * @type String
2728                  * @cat DOM/Attributes
2729                  */
2730
2731                 /**
2732                  * Set the src of every matched element.
2733                  *
2734                  * @example $("img").src("test2.jpg");
2735                  * @before <img src="test.jpg" title="my image"/>
2736                  * @result <img src="test2.jpg" title="my image"/>
2737                  *
2738                  * @name src
2739                  * @type jQuery
2740                  * @param String val Set the property to the specified value.
2741                  * @cat DOM/Attributes
2742                  */
2743                 src: null,
2744
2745                 /**
2746                  * Get the current rel of the first matched element.
2747                  *
2748                  * @example $("a").rel();
2749                  * @before <a href="test.html" rel="nofollow">my link</a>
2750                  * @result "nofollow"
2751                  *
2752                  * @name rel
2753                  * @type String
2754                  * @cat DOM/Attributes
2755                  */
2756
2757                 /**
2758                  * Set the rel of every matched element.
2759                  *
2760                  * @example $("a").rel("nofollow");
2761                  * @before <a href="test.html">my link</a>
2762                  * @result <a href="test.html" rel="nofollow">my link</a>
2763                  *
2764                  * @name rel
2765                  * @type jQuery
2766                  * @param String val Set the property to the specified value.
2767                  * @cat DOM/Attributes
2768                  */
2769                 rel: null
2770         },
2771
2772         axis: {
2773                 /**
2774                  * Get a set of elements containing the unique parents of the matched
2775                  * set of elements.
2776                  *
2777                  * @example $("p").parent()
2778                  * @before <div><p>Hello</p><p>Hello</p></div>
2779                  * @result [ <div><p>Hello</p><p>Hello</p></div> ]
2780                  *
2781                  * @name parent
2782                  * @type jQuery
2783                  * @cat DOM/Traversing
2784                  */
2785
2786                 /**
2787                  * Get a set of elements containing the unique parents of the matched
2788                  * set of elements, and filtered by an expression.
2789                  *
2790                  * @example $("p").parent(".selected")
2791                  * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
2792                  * @result [ <div class="selected"><p>Hello Again</p></div> ]
2793                  *
2794                  * @name parent
2795                  * @type jQuery
2796                  * @param String expr An expression to filter the parents with
2797                  * @cat DOM/Traversing
2798                  */
2799                 parent: "a.parentNode",
2800
2801                 /**
2802                  * Get a set of elements containing the unique ancestors of the matched
2803                  * set of elements (except for the root element).
2804                  *
2805                  * @example $("span").ancestors()
2806                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2807                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2808                  *
2809                  * @name ancestors
2810                  * @type jQuery
2811                  * @cat DOM/Traversing
2812                  */
2813
2814                 /**
2815                  * Get a set of elements containing the unique ancestors of the matched
2816                  * set of elements, and filtered by an expression.
2817                  *
2818                  * @example $("span").ancestors("p")
2819                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2820                  * @result [ <p><span>Hello</span></p> ]
2821                  *
2822                  * @name ancestors
2823                  * @type jQuery
2824                  * @param String expr An expression to filter the ancestors with
2825                  * @cat DOM/Traversing
2826                  */
2827                 ancestors: jQuery.parents,
2828
2829                 /**
2830                  * Get a set of elements containing the unique ancestors of the matched
2831                  * set of elements (except for the root element).
2832                  *
2833                  * @example $("span").ancestors()
2834                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2835                  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2836                  *
2837                  * @name parents
2838                  * @type jQuery
2839                  * @cat DOM/Traversing
2840                  */
2841
2842                 /**
2843                  * Get a set of elements containing the unique ancestors of the matched
2844                  * set of elements, and filtered by an expression.
2845                  *
2846                  * @example $("span").ancestors("p")
2847                  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2848                  * @result [ <p><span>Hello</span></p> ]
2849                  *
2850                  * @name parents
2851                  * @type jQuery
2852                  * @param String expr An expression to filter the ancestors with
2853                  * @cat DOM/Traversing
2854                  */
2855                 parents: jQuery.parents,
2856
2857                 /**
2858                  * Get a set of elements containing the unique next siblings of each of the
2859                  * matched set of elements.
2860                  *
2861                  * It only returns the very next sibling, not all next siblings.
2862                  *
2863                  * @example $("p").next()
2864                  * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
2865                  * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
2866                  *
2867                  * @name next
2868                  * @type jQuery
2869                  * @cat DOM/Traversing
2870                  */
2871
2872                 /**
2873                  * Get a set of elements containing the unique next siblings of each of the
2874                  * matched set of elements, and filtered by an expression.
2875                  *
2876                  * It only returns the very next sibling, not all next siblings.
2877                  *
2878                  * @example $("p").next(".selected")
2879                  * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
2880                  * @result [ <p class="selected">Hello Again</p> ]
2881                  *
2882                  * @name next
2883                  * @type jQuery
2884                  * @param String expr An expression to filter the next Elements with
2885                  * @cat DOM/Traversing
2886                  */
2887                 next: "jQuery.sibling(a).next",
2888
2889                 /**
2890                  * Get a set of elements containing the unique previous siblings of each of the
2891                  * matched set of elements.
2892                  *
2893                  * It only returns the immediately previous sibling, not all previous siblings.
2894                  *
2895                  * @example $("p").previous()
2896                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2897                  * @result [ <div><span>Hello Again</span></div> ]
2898                  *
2899                  * @name prev
2900                  * @type jQuery
2901                  * @cat DOM/Traversing
2902                  */
2903
2904                 /**
2905                  * Get a set of elements containing the unique previous siblings of each of the
2906                  * matched set of elements, and filtered by an expression.
2907                  *
2908                  * It only returns the immediately previous sibling, not all previous siblings.
2909                  *
2910                  * @example $("p").previous(".selected")
2911                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2912                  * @result [ <div><span>Hello</span></div> ]
2913                  *
2914                  * @name prev
2915                  * @type jQuery
2916                  * @param String expr An expression to filter the previous Elements with
2917                  * @cat DOM/Traversing
2918                  */
2919                 prev: "jQuery.sibling(a).prev",
2920
2921                 /**
2922                  * Get a set of elements containing all of the unique siblings of each of the
2923                  * matched set of elements.
2924                  *
2925                  * @example $("div").siblings()
2926                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2927                  * @result [ <p>Hello</p>, <p>And Again</p> ]
2928                  *
2929                  * @test isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" ); 
2930                  *
2931                  * @name siblings
2932                  * @type jQuery
2933                  * @cat DOM/Traversing
2934                  */
2935
2936                 /**
2937                  * Get a set of elements containing all of the unique siblings of each of the
2938                  * matched set of elements, and filtered by an expression.
2939                  *
2940                  * @example $("div").siblings(".selected")
2941                  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2942                  * @result [ <p class="selected">Hello Again</p> ]
2943                  *
2944                  * @test isSet( $("#sndp").siblings("[code]").get(), q("sap"), "Check for filtered siblings (has code child element)" ); 
2945                  * @test isSet( $("#sndp").siblings("[a]").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
2946                  *
2947                  * @name siblings
2948                  * @type jQuery
2949                  * @param String expr An expression to filter the sibling Elements with
2950                  * @cat DOM/Traversing
2951                  */
2952                 siblings: jQuery.sibling,
2953
2954
2955                 /**
2956                  * Get a set of elements containing all of the unique children of each of the
2957                  * matched set of elements.
2958                  *
2959                  * @example $("div").children()
2960                  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2961                  * @result [ <span>Hello Again</span> ]
2962                  *
2963                  * @name children
2964                  * @type jQuery
2965                  * @cat DOM/Traversing
2966                  */
2967
2968                 /**
2969                  * Get a set of elements containing all of the unique children of each of the
2970                  * matched set of elements, and filtered by an expression.
2971                  *
2972                  * @example $("div").children(".selected")
2973                  * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div>
2974                  * @result [ <p class="selected">Hello Again</p> ]
2975                  *
2976                  * @name children
2977                  * @type jQuery
2978                  * @param String expr An expression to filter the child Elements with
2979                  * @cat DOM/Traversing
2980                  */
2981                 children: "jQuery.sibling(a.firstChild)"
2982         },
2983
2984         each: {
2985
2986                 /**
2987                  * Remove an attribute from each of the matched elements.
2988                  *
2989                  * @example $("input").removeAttr("disabled")
2990                  * @before <input disabled="disabled"/>
2991                  * @result <input/>
2992                  *
2993                  * @name removeAttr
2994                  * @type jQuery
2995                  * @param String name The name of the attribute to remove.
2996                  * @cat DOM
2997                  */
2998                 removeAttr: function( key ) {
2999                         this.removeAttribute( key );
3000                 },
3001
3002                 /**
3003                  * Displays each of the set of matched elements if they are hidden.
3004                  *
3005                  * @example $("p").show()
3006                  * @before <p style="display: none">Hello</p>
3007                  * @result [ <p style="display: block">Hello</p> ]
3008                  *
3009                  * @test var pass = true, div = $("div");
3010                  * div.show().each(function(){
3011                  *   if ( this.style.display == "none" ) pass = false;
3012                  * });
3013                  * ok( pass, "Show" );
3014                  *
3015                  * @name show
3016                  * @type jQuery
3017                  * @cat Effects
3018                  */
3019                 show: function(){
3020                         this.style.display = this.oldblock ? this.oldblock : "";
3021                         if ( jQuery.css(this,"display") == "none" )
3022                                 this.style.display = "block";
3023                 },
3024
3025                 /**
3026                  * Hides each of the set of matched elements if they are shown.
3027                  *
3028                  * @example $("p").hide()
3029                  * @before <p>Hello</p>
3030                  * @result [ <p style="display: none">Hello</p> ]
3031                  *
3032                  * var pass = true, div = $("div");
3033                  * div.hide().each(function(){
3034                  *   if ( this.style.display != "none" ) pass = false;
3035                  * });
3036                  * ok( pass, "Hide" );
3037                  *
3038                  * @name hide
3039                  * @type jQuery
3040                  * @cat Effects
3041                  */
3042                 hide: function(){
3043                         this.oldblock = this.oldblock || jQuery.css(this,"display");
3044                         if ( this.oldblock == "none" )
3045                                 this.oldblock = "block";
3046                         this.style.display = "none";
3047                 },
3048
3049                 /**
3050                  * Toggles each of the set of matched elements. If they are shown,
3051                  * toggle makes them hidden. If they are hidden, toggle
3052                  * makes them shown.
3053                  *
3054                  * @example $("p").toggle()
3055                  * @before <p>Hello</p><p style="display: none">Hello Again</p>
3056                  * @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
3057                  *
3058                  * @name toggle
3059                  * @type jQuery
3060                  * @cat Effects
3061                  */
3062                 toggle: function(){
3063                         jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ].apply( jQuery(this), arguments );
3064                 },
3065
3066                 /**
3067                  * Adds the specified class to each of the set of matched elements.
3068                  *
3069                  * @example $("p").addClass("selected")
3070                  * @before <p>Hello</p>
3071                  * @result [ <p class="selected">Hello</p> ]
3072                  *
3073                  * @test var div = $("div");
3074                  * div.addClass("test");
3075                  * var pass = true;
3076                  * for ( var i = 0; i < div.size(); i++ ) {
3077                  *  if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
3078                  * }
3079                  * ok( pass, "Add Class" );
3080                  *
3081                  * @name addClass
3082                  * @type jQuery
3083                  * @param String class A CSS class to add to the elements
3084                  * @cat DOM
3085                  */
3086                 addClass: function(c){
3087                         jQuery.className.add(this,c);
3088                 },
3089
3090                 /**
3091                  * Removes the specified class from the set of matched elements.
3092                  *
3093                  * @example $("p").removeClass("selected")
3094                  * @before <p class="selected">Hello</p>
3095                  * @result [ <p>Hello</p> ]
3096                  *
3097                  * @test var div = $("div").addClass("test");
3098                  * div.removeClass("test");
3099                  * var pass = true;
3100                  * for ( var i = 0; i < div.size(); i++ ) {
3101                  *  if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
3102                  * }
3103                  * ok( pass, "Remove Class" );
3104                  *
3105                  * @name removeClass
3106                  * @type jQuery
3107                  * @param String class A CSS class to remove from the elements
3108                  * @cat DOM
3109                  */
3110                 removeClass: function(c){
3111                         jQuery.className.remove(this,c);
3112                 },
3113
3114                 /**
3115                  * Adds the specified class if it is present, removes it if it is
3116                  * not present.
3117                  *
3118                  * @example $("p").toggleClass("selected")
3119                  * @before <p>Hello</p><p class="selected">Hello Again</p>
3120                  * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
3121                  *
3122                  * @name toggleClass
3123                  * @type jQuery
3124                  * @param String class A CSS class with which to toggle the elements
3125                  * @cat DOM
3126                  */
3127                 toggleClass: function( c ){
3128                         jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this,c);
3129                 },
3130
3131                 /**
3132                  * Removes all matched elements from the DOM. This does NOT remove them from the
3133                  * jQuery object, allowing you to use the matched elements further.
3134                  *
3135                  * @example $("p").remove();
3136                  * @before <p>Hello</p> how are <p>you?</p>
3137                  * @result how are
3138                  *
3139                  * @name remove
3140                  * @type jQuery
3141                  * @cat DOM/Manipulation
3142                  */
3143
3144                 /**
3145                  * Removes only elements (out of the list of matched elements) that match
3146                  * the specified jQuery expression. This does NOT remove them from the
3147                  * jQuery object, allowing you to use the matched elements further.
3148                  *
3149                  * @example $("p").remove(".hello");
3150                  * @before <p class="hello">Hello</p> how are <p>you?</p>
3151                  * @result how are <p>you?</p>
3152                  *
3153                  * @name remove
3154                  * @type jQuery
3155                  * @param String expr A jQuery expression to filter elements by.
3156                  * @cat DOM/Manipulation
3157                  */
3158                 remove: function(a){
3159                         if ( !a || jQuery.filter( a, [this] ).r )
3160                                 this.parentNode.removeChild( this );
3161                 },
3162
3163                 /**
3164                  * Removes all child nodes from the set of matched elements.
3165                  *
3166                  * @example $("p").empty()
3167                  * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
3168                  * @result [ <p></p> ]
3169                  *
3170                  * @name empty
3171                  * @type jQuery
3172                  * @cat DOM/Manipulation
3173                  */
3174                 empty: function(){
3175                         while ( this.firstChild )
3176                                 this.removeChild( this.firstChild );
3177                 },
3178
3179                 /**
3180                  * Binds a handler to a particular event (like click) for each matched element.
3181                  * The event handler is passed an event object that you can use to prevent
3182                  * default behaviour. To stop both default action and event bubbling, your handler
3183                  * has to return false.
3184                  *
3185                  * @example $("p").bind( "click", function() {
3186                  *   alert( $(this).text() );
3187                  * } )
3188                  * @before <p>Hello</p>
3189                  * @result alert("Hello")
3190                  *
3191                  * @example $("form").bind( "submit", function() { return false; } )
3192                  * @desc Cancel a default action and prevent it from bubbling by returning false
3193                  * from your function.
3194                  *
3195                  * @example $("form").bind( "submit", function(event) {
3196                  *   event.preventDefault();
3197                  * } );
3198                  * @desc Cancel only the default action by using the preventDefault method.
3199                  *
3200                  *
3201                  * @example $("form").bind( "submit", function(event) {
3202                  *   event.stopPropagation();
3203                  * } )
3204                  * @desc Stop only an event from bubbling by using the stopPropagation method.
3205                  *
3206                  * @name bind
3207                  * @type jQuery
3208                  * @param String type An event type
3209                  * @param Function fn A function to bind to the event on each of the set of matched elements
3210                  * @cat Events
3211                  */
3212                 bind: function( type, fn ) {
3213                         if ( fn.constructor == String )
3214                                 fn = new Function("e", ( !fn.indexOf(".") ? "jQuery(this)" : "return " ) + fn);
3215                         jQuery.event.add( this, type, fn );
3216                 },
3217
3218                 /**
3219                  * The opposite of bind, removes a bound event from each of the matched
3220                  * elements. You must pass the identical function that was used in the original
3221                  * bind method.
3222                  *
3223                  * @example $("p").unbind( "click", function() { alert("Hello"); } )
3224                  * @before <p onclick="alert('Hello');">Hello</p>
3225                  * @result [ <p>Hello</p> ]
3226                  *
3227                  * @name unbind
3228                  * @type jQuery
3229                  * @param String type An event type
3230                  * @param Function fn A function to unbind from the event on each of the set of matched elements
3231                  * @cat Events
3232                  */
3233
3234                 /**
3235                  * Removes all bound events of a particular type from each of the matched
3236                  * elements.
3237                  *
3238                  * @example $("p").unbind( "click" )
3239                  * @before <p onclick="alert('Hello');">Hello</p>
3240                  * @result [ <p>Hello</p> ]
3241                  *
3242                  * @name unbind
3243                  * @type jQuery
3244                  * @param String type An event type
3245                  * @cat Events
3246                  */
3247
3248                 /**
3249                  * Removes all bound events from each of the matched elements.
3250                  *
3251                  * @example $("p").unbind()
3252                  * @before <p onclick="alert('Hello');">Hello</p>
3253                  * @result [ <p>Hello</p> ]
3254                  *
3255                  * @name unbind
3256                  * @type jQuery
3257                  * @cat Events
3258                  */
3259                 unbind: function( type, fn ) {
3260                         jQuery.event.remove( this, type, fn );
3261                 },
3262
3263                 /**
3264                  * Trigger a type of event on every matched element.
3265                  *
3266                  * @example $("p").trigger("click")
3267                  * @before <p click="alert('hello')">Hello</p>
3268                  * @result alert('hello')
3269                  *
3270                  * @name trigger
3271                  * @type jQuery
3272                  * @param String type An event type to trigger.
3273                  * @cat Events
3274                  */
3275                 trigger: function( type, data ) {
3276                         jQuery.event.trigger( type, data, this );
3277                 }
3278         }
3279 };
3280
3281 jQuery.init();