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