selectedIndex is now cloned in IE (#1294)
[jquery.git] / src / jquery / jquery.js
1 /*
2  * jQuery @VERSION - New Wave Javascript
3  *
4  * Copyright (c) 2007 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  * @constructor
19  * @private
20  * @name jQuery
21  * @param String|Function|Element|Array<Element>|jQuery a selector
22  * @param jQuery|Element|Array<Element> c context
23  * @cat Core
24  */
25 var jQuery = function(a,c) {
26         // If the context is global, return a new object
27         if ( window == this || !this.init )
28                 return new jQuery(a,c);
29         
30         return this.init(a,c);
31 };
32
33 // Map over the $ in case of overwrite
34 if ( typeof $ != "undefined" )
35         jQuery._$ = $;
36         
37 // Map the jQuery namespace to the '$' one
38 var $ = jQuery;
39
40 /**
41  * This function accepts a string containing a CSS or
42  * basic XPath selector which is then used to match a set of elements.
43  *
44  * The core functionality of jQuery centers around this function.
45  * Everything in jQuery is based upon this, or uses this in some way.
46  * The most basic use of this function is to pass in an expression
47  * (usually consisting of CSS or XPath), which then finds all matching
48  * elements.
49  *
50  * By default, if no context is specified, $() looks for DOM elements within the context of the
51  * current HTML document. If you do specify a context, such as a DOM
52  * element or jQuery object, the expression will be matched against
53  * the contents of that context.
54  *
55  * See [[DOM/Traversing/Selectors]] for the allowed CSS/XPath syntax for expressions.
56  *
57  * @example $("div > p")
58  * @desc Finds all p elements that are children of a div element.
59  * @before <p>one</p> <div><p>two</p></div> <p>three</p>
60  * @result [ <p>two</p> ]
61  *
62  * @example $("input:radio", document.forms[0])
63  * @desc Searches for all inputs of type radio within the first form in the document
64  *
65  * @example $("div", xml.responseXML)
66  * @desc This finds all div elements within the specified XML document.
67  *
68  * @name $
69  * @param String expr An expression to search with
70  * @param Element|jQuery context (optional) A DOM Element, Document or jQuery to use as context
71  * @cat Core
72  * @type jQuery
73  * @see $(Element)
74  * @see $(Element<Array>)
75  */
76  
77 /**
78  * Create DOM elements on-the-fly from the provided String of raw HTML.
79  *
80  * @example $("<div><p>Hello</p></div>").appendTo("body")
81  * @desc Creates a div element (and all of its contents) dynamically, 
82  * and appends it to the body element. Internally, an
83  * element is created and its innerHTML property set to the given markup.
84  * It is therefore both quite flexible and limited. 
85  *
86  * @name $
87  * @param String html A string of HTML to create on the fly.
88  * @cat Core
89  * @type jQuery
90  * @see appendTo(String)
91  */
92
93 /**
94  * Wrap jQuery functionality around a single or multiple DOM Element(s).
95  *
96  * This function also accepts XML Documents and Window objects
97  * as valid arguments (even though they are not DOM Elements).
98  *
99  * @example $(document.body).css( "background", "black" );
100  * @desc Sets the background color of the page to black.
101  *
102  * @example $( myForm.elements ).hide()
103  * @desc Hides all the input elements within a form
104  *
105  * @name $
106  * @param Element|Array<Element> elems DOM element(s) to be encapsulated by a jQuery object.
107  * @cat Core
108  * @type jQuery
109  */
110
111 /**
112  * A shorthand for $(document).ready(), allowing you to bind a function
113  * to be executed when the DOM document has finished loading. This function
114  * behaves just like $(document).ready(), in that it should be used to wrap
115  * other $() operations on your page that depend on the DOM being ready to be
116  * operated on. While this function is, technically, chainable - there really
117  * isn't much use for chaining against it.
118  *
119  * You can have as many $(document).ready events on your page as you like.
120  *
121  * See ready(Function) for details about the ready event. 
122  * 
123  * @example $(function(){
124  *   // Document is ready
125  * });
126  * @desc Executes the function when the DOM is ready to be used.
127  *
128  * @example jQuery(function($) {
129  *   // Your code using failsafe $ alias here...
130  * });
131  * @desc Uses both the shortcut for $(document).ready() and the argument
132  * to write failsafe jQuery code using the $ alias, without relying on the
133  * global alias.
134  *
135  * @name $
136  * @param Function fn The function to execute when the DOM is ready.
137  * @cat Core
138  * @type jQuery
139  * @see ready(Function)
140  */
141
142 jQuery.fn = jQuery.prototype = {
143         /**
144          * Initialize a new jQuery object
145          *
146          * @private
147          * @name init
148          * @param String|Function|Element|Array<Element>|jQuery a selector
149          * @param jQuery|Element|Array<Element> c context
150          * @cat Core
151          */
152         init: function(a,c) {
153                 // Make sure that a selection was provided
154                 a = a || document;
155
156                 // HANDLE: $(function)
157                 // Shortcut for document ready
158                 if ( jQuery.isFunction(a) )
159                         return new jQuery(document)[ jQuery.fn.ready ? "ready" : "load" ]( a );
160
161                 // Handle HTML strings
162                 if ( typeof a  == "string" ) {
163                         // HANDLE: $(html) -> $(array)
164                         var m = /^[^<]*(<(.|\s)+>)[^>]*$/.exec(a);
165                         if ( m )
166                                 a = jQuery.clean( [ m[1] ] );
167
168                         // HANDLE: $(expr)
169                         else
170                                 return new jQuery( c ).find( a );
171                 }
172
173                 return this.setArray(
174                         // HANDLE: $(array)
175                         a.constructor == Array && a ||
176
177                         // HANDLE: $(arraylike)
178                         // Watch for when an array-like object is passed as the selector
179                         (a.jquery || a.length && a != window && !a.nodeType && a[0] != undefined && a[0].nodeType) && jQuery.makeArray( a ) ||
180
181                         // HANDLE: $(*)
182                         [ a ] );
183         },
184         
185         /**
186          * The current version of jQuery.
187          *
188          * @private
189          * @property
190          * @name jquery
191          * @type String
192          * @cat Core
193          */
194         jquery: "@VERSION",
195
196         /**
197          * The number of elements currently matched. The size function will return the same value.
198          *
199          * @example $("img").length;
200          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
201          * @result 2
202          *
203          * @property
204          * @name length
205          * @type Number
206          * @cat Core
207          */
208
209         /**
210          * Get the number of elements currently matched. This returns the same
211          * number as the 'length' property of the jQuery object.
212          *
213          * @example $("img").size();
214          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
215          * @result 2
216          *
217          * @name size
218          * @type Number
219          * @cat Core
220          */
221         size: function() {
222                 return this.length;
223         },
224         
225         length: 0,
226
227         /**
228          * Access all matched DOM elements. This serves as a backwards-compatible
229          * way of accessing all matched elements (other than the jQuery object
230          * itself, which is, in fact, an array of elements).
231          *
232          * It is useful if you need to operate on the DOM elements themselves instead of using built-in jQuery functions.
233          *
234          * @example $("img").get();
235          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
236          * @result [ <img src="test1.jpg"/> <img src="test2.jpg"/> ]
237          * @desc Selects all images in the document and returns the DOM Elements as an Array
238          *
239          * @name get
240          * @type Array<Element>
241          * @cat Core
242          */
243
244         /**
245          * Access a single matched DOM element at a specified index in the matched set.
246          * This allows you to extract the actual DOM element and operate on it
247          * directly without necessarily using jQuery functionality on it.
248          *
249          * @example $("img").get(0);
250          * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
251          * @result <img src="test1.jpg"/>
252          * @desc Selects all images in the document and returns the first one
253          *
254          * @name get
255          * @type Element
256          * @param Number num Access the element in the Nth position.
257          * @cat Core
258          */
259         get: function( num ) {
260                 return num == undefined ?
261
262                         // Return a 'clean' array
263                         jQuery.makeArray( this ) :
264
265                         // Return just the object
266                         this[num];
267         },
268         
269         /**
270          * Set the jQuery object to an array of elements, while maintaining
271          * the stack.
272          *
273          * @example $("img").pushStack([ document.body ]);
274          * @result $("img").pushStack() == [ document.body ]
275          *
276          * @private
277          * @name pushStack
278          * @type jQuery
279          * @param Elements elems An array of elements
280          * @cat Core
281          */
282         pushStack: function( a ) {
283                 var ret = jQuery(a);
284                 ret.prevObject = this;
285                 return ret;
286         },
287         
288         /**
289          * Set the jQuery object to an array of elements. This operation is
290          * completely destructive - be sure to use .pushStack() if you wish to maintain
291          * the jQuery stack.
292          *
293          * @example $("img").setArray([ document.body ]);
294          * @result $("img").setArray() == [ document.body ]
295          *
296          * @private
297          * @name setArray
298          * @type jQuery
299          * @param Elements elems An array of elements
300          * @cat Core
301          */
302         setArray: function( a ) {
303                 this.length = 0;
304                 [].push.apply( this, a );
305                 return this;
306         },
307
308         /**
309          * Execute a function within the context of every matched element.
310          * This means that every time the passed-in function is executed
311          * (which is once for every element matched) the 'this' keyword
312          * points to the specific DOM element.
313          *
314          * Additionally, the function, when executed, is passed a single
315          * argument representing the position of the element in the matched
316          * set (integer, zero-index).
317          *
318          * @example $("img").each(function(i){
319          *   this.src = "test" + i + ".jpg";
320          * });
321          * @before <img/><img/>
322          * @result <img src="test0.jpg"/><img src="test1.jpg"/>
323          * @desc Iterates over two images and sets their src property
324          *
325          * @name each
326          * @type jQuery
327          * @param Function fn A function to execute
328          * @cat Core
329          */
330         each: function( fn, args ) {
331                 return jQuery.each( this, fn, args );
332         },
333
334         /**
335          * Searches every matched element for the object and returns
336          * the index of the element, if found, starting with zero. 
337          * Returns -1 if the object wasn't found.
338          *
339          * @example $("*").index( $('#foobar')[0] ) 
340          * @before <div id="foobar"><b></b><span id="foo"></span></div>
341          * @result 0
342          * @desc Returns the index for the element with ID foobar
343          *
344          * @example $("*").index( $('#foo')[0] ) 
345          * @before <div id="foobar"><b></b><span id="foo"></span></div>
346          * @result 2
347          * @desc Returns the index for the element with ID foo within another element
348          *
349          * @example $("*").index( $('#bar')[0] ) 
350          * @before <div id="foobar"><b></b><span id="foo"></span></div>
351          * @result -1
352          * @desc Returns -1, as there is no element with ID bar
353          *
354          * @name index
355          * @type Number
356          * @param Element subject Object to search for
357          * @cat Core
358          */
359         index: function( obj ) {
360                 var pos = -1;
361                 this.each(function(i){
362                         if ( this == obj ) pos = i;
363                 });
364                 return pos;
365         },
366
367         /**
368          * Access a property on the first matched element.
369          * This method makes it easy to retrieve a property value
370          * from the first matched element.
371          *
372          * If the element does not have an attribute with such a
373          * name, undefined is returned.
374          *
375          * @example $("img").attr("src");
376          * @before <img src="test.jpg"/>
377          * @result test.jpg
378          * @desc Returns the src attribute from the first image in the document.
379          *
380          * @name attr
381          * @type Object
382          * @param String name The name of the property to access.
383          * @cat DOM/Attributes
384          */
385
386         /**
387          * Set a key/value object as properties to all matched elements.
388          *
389          * This serves as the best way to set a large number of properties
390          * on all matched elements.
391          *
392          * @example $("img").attr({ src: "test.jpg", alt: "Test Image" });
393          * @before <img/>
394          * @result <img src="test.jpg" alt="Test Image"/>
395          * @desc Sets src and alt attributes to all images.
396          *
397          * @name attr
398          * @type jQuery
399          * @param Map properties Key/value pairs to set as object properties.
400          * @cat DOM/Attributes
401          */
402
403         /**
404          * Set a single property to a value, on all matched elements.
405          *
406          * Note that you can't set the name property of input elements in IE.
407          * Use $(html) or .append(html) or .html(html) to create elements
408          * on the fly including the name property.
409          *
410          * @example $("img").attr("src","test.jpg");
411          * @before <img/>
412          * @result <img src="test.jpg"/>
413          * @desc Sets src attribute to all images.
414          *
415          * @name attr
416          * @type jQuery
417          * @param String key The name of the property to set.
418          * @param Object value The value to set the property to.
419          * @cat DOM/Attributes
420          */
421          
422         /**
423          * Set a single property to a computed value, on all matched elements.
424          *
425          * Instead of supplying a string value as described
426          * [[DOM/Attributes#attr.28_key.2C_value_.29|above]],
427          * a function is provided that computes the value.
428          *
429          * @example $("img").attr("title", function() { return this.src });
430          * @before <img src="test.jpg" />
431          * @result <img src="test.jpg" title="test.jpg" />
432          * @desc Sets title attribute from src attribute.
433          *
434          * @example $("img").attr("title", function(index) { return this.title + (i + 1); });
435          * @before <img title="pic" /><img title="pic" /><img title="pic" />
436          * @result <img title="pic1" /><img title="pic2" /><img title="pic3" />
437          * @desc Enumerate title attribute.
438          *
439          * @name attr
440          * @type jQuery
441          * @param String key The name of the property to set.
442          * @param Function value A function returning the value to set.
443          *                Scope: Current element, argument: Index of current element
444          * @cat DOM/Attributes
445          */
446         attr: function( key, value, type ) {
447                 var obj = key;
448                 
449                 // Look for the case where we're accessing a style value
450                 if ( key.constructor == String )
451                         if ( value == undefined )
452                                 return this.length && jQuery[ type || "attr" ]( this[0], key ) || undefined;
453                         else {
454                                 obj = {};
455                                 obj[ key ] = value;
456                         }
457                 
458                 // Check to see if we're setting style values
459                 return this.each(function(index){
460                         // Set all the styles
461                         for ( var prop in obj )
462                                 jQuery.attr(
463                                         type ? this.style : this,
464                                         prop, jQuery.prop(this, obj[prop], type, index, prop)
465                                 );
466                 });
467         },
468
469         /**
470          * Access a style property on the first matched element.
471          * This method makes it easy to retrieve a style property value
472          * from the first matched element.
473          *
474          * @example $("p").css("color");
475          * @before <p style="color:red;">Test Paragraph.</p>
476          * @result "red"
477          * @desc Retrieves the color style of the first paragraph
478          *
479          * @example $("p").css("font-weight");
480          * @before <p style="font-weight: bold;">Test Paragraph.</p>
481          * @result "bold"
482          * @desc Retrieves the font-weight style of the first paragraph.
483          *
484          * @name css
485          * @type String
486          * @param String name The name of the property to access.
487          * @cat CSS
488          */
489
490         /**
491          * Set a key/value object as style properties to all matched elements.
492          *
493          * This serves as the best way to set a large number of style properties
494          * on all matched elements.
495          *
496          * @example $("p").css({ color: "red", background: "blue" });
497          * @before <p>Test Paragraph.</p>
498          * @result <p style="color:red; background:blue;">Test Paragraph.</p>
499          * @desc Sets color and background styles to all p elements.
500          *
501          * @name css
502          * @type jQuery
503          * @param Map properties Key/value pairs to set as style properties.
504          * @cat CSS
505          */
506
507         /**
508          * Set a single style property to a value, on all matched elements.
509          * If a number is provided, it is automatically converted into a pixel value.
510          *
511          * @example $("p").css("color","red");
512          * @before <p>Test Paragraph.</p>
513          * @result <p style="color:red;">Test Paragraph.</p>
514          * @desc Changes the color of all paragraphs to red
515          *
516          * @example $("p").css("left",30);
517          * @before <p>Test Paragraph.</p>
518          * @result <p style="left:30px;">Test Paragraph.</p>
519          * @desc Changes the left of all paragraphs to "30px"
520          *
521          * @name css
522          * @type jQuery
523          * @param String key The name of the property to set.
524          * @param String|Number value The value to set the property to.
525          * @cat CSS
526          */
527         css: function( key, value ) {
528                 return this.attr( key, value, "curCSS" );
529         },
530
531         /**
532          * Get the text contents of all matched elements. The result is
533          * a string that contains the combined text contents of all matched
534          * elements. This method works on both HTML and XML documents.
535          *
536          * @example $("p").text();
537          * @before <p><b>Test</b> Paragraph.</p><p>Paraparagraph</p>
538          * @result Test Paragraph.Paraparagraph
539          * @desc Gets the concatenated text of all paragraphs
540          *
541          * @name text
542          * @type String
543          * @cat DOM/Attributes
544          */
545
546         /**
547          * Set the text contents of all matched elements.
548          *
549          * Similar to html(), but escapes HTML (replace "<" and ">" with their
550          * HTML entities).
551          *
552          * @example $("p").text("<b>Some</b> new text.");
553          * @before <p>Test Paragraph.</p>
554          * @result <p>&lt;b&gt;Some&lt;/b&gt; new text.</p>
555          * @desc Sets the text of all paragraphs.
556          *
557          * @example $("p").text("<b>Some</b> new text.", true);
558          * @before <p>Test Paragraph.</p>
559          * @result <p>Some new text.</p>
560          * @desc Sets the text of all paragraphs.
561          *
562          * @name text
563          * @type String
564          * @param String val The text value to set the contents of the element to.
565          * @cat DOM/Attributes
566          */
567         text: function(e) {
568                 if ( typeof e != "object" && e != null )
569                         return this.empty().append( document.createTextNode( e ) );
570
571                 var t = "";
572                 jQuery.each( e || this, function(){
573                         jQuery.each( this.childNodes, function(){
574                                 if ( this.nodeType != 8 )
575                                         t += this.nodeType != 1 ?
576                                                 this.nodeValue : jQuery.fn.text([ this ]);
577                         });
578                 });
579                 return t;
580         },
581
582         /**
583          * Wrap all matched elements with a structure of other elements.
584          * This wrapping process is most useful for injecting additional
585          * stucture into a document, without ruining the original semantic
586          * qualities of a document.
587          *
588          * This works by going through the first element
589          * provided (which is generated, on the fly, from the provided HTML)
590          * and finds the deepest ancestor element within its
591          * structure - it is that element that will en-wrap everything else.
592          *
593          * This does not work with elements that contain text. Any necessary text
594          * must be added after the wrapping is done.
595          *
596          * @example $("p").wrap("<div class='wrap'></div>");
597          * @before <p>Test Paragraph.</p>
598          * @result <div class='wrap'><p>Test Paragraph.</p></div>
599          * 
600          * @name wrap
601          * @type jQuery
602          * @param String html A string of HTML, that will be created on the fly and wrapped around the target.
603          * @cat DOM/Manipulation
604          */
605
606         /**
607          * Wrap all matched elements with a structure of other elements.
608          * This wrapping process is most useful for injecting additional
609          * stucture into a document, without ruining the original semantic
610          * qualities of a document.
611          *
612          * This works by going through the first element
613          * provided and finding the deepest ancestor element within its
614          * structure - it is that element that will en-wrap everything else.
615          *
616          * This does not work with elements that contain text. Any necessary text
617          * must be added after the wrapping is done.
618          *
619          * @example $("p").wrap( document.getElementById('content') );
620          * @before <p>Test Paragraph.</p><div id="content"></div>
621          * @result <div id="content"><p>Test Paragraph.</p></div>
622          *
623          * @name wrap
624          * @type jQuery
625          * @param Element elem A DOM element that will be wrapped around the target.
626          * @cat DOM/Manipulation
627          */
628         wrap: function() {
629                 // The elements to wrap the target around
630                 var a, args = arguments;
631
632                 // Wrap each of the matched elements individually
633                 return this.each(function(){
634                         if ( !a )
635                                 a = jQuery.clean(args, this.ownerDocument);
636
637                         // Clone the structure that we're using to wrap
638                         var b = a[0].cloneNode(true);
639
640                         // Insert it before the element to be wrapped
641                         this.parentNode.insertBefore( b, this );
642
643                         // Find the deepest point in the wrap structure
644                         while ( b.firstChild )
645                                 b = b.firstChild;
646
647                         // Move the matched element to within the wrap structure
648                         b.appendChild( this );
649                 });
650         },
651
652         /**
653          * Append content to the inside of every matched element.
654          *
655          * This operation is similar to doing an appendChild to all the
656          * specified elements, adding them into the document.
657          *
658          * @example $("p").append("<b>Hello</b>");
659          * @before <p>I would like to say: </p>
660          * @result <p>I would like to say: <b>Hello</b></p>
661          * @desc Appends some HTML to all paragraphs.
662          *
663          * @example $("p").append( $("#foo")[0] );
664          * @before <p>I would like to say: </p><b id="foo">Hello</b>
665          * @result <p>I would like to say: <b id="foo">Hello</b></p>
666          * @desc Appends an Element to all paragraphs.
667          *
668          * @example $("p").append( $("b") );
669          * @before <p>I would like to say: </p><b>Hello</b>
670          * @result <p>I would like to say: <b>Hello</b></p>
671          * @desc Appends a jQuery object (similar to an Array of DOM Elements) to all paragraphs.
672          *
673          * @name append
674          * @type jQuery
675          * @param <Content> content Content to append to the target
676          * @cat DOM/Manipulation
677          * @see prepend(<Content>)
678          * @see before(<Content>)
679          * @see after(<Content>)
680          */
681         append: function() {
682                 return this.domManip(arguments, true, 1, function(a){
683                         this.appendChild( a );
684                 });
685         },
686
687         /**
688          * Prepend content to the inside of every matched element.
689          *
690          * This operation is the best way to insert elements
691          * inside, at the beginning, of all matched elements.
692          *
693          * @example $("p").prepend("<b>Hello</b>");
694          * @before <p>I would like to say: </p>
695          * @result <p><b>Hello</b>I would like to say: </p>
696          * @desc Prepends some HTML to all paragraphs.
697          *
698          * @example $("p").prepend( $("#foo")[0] );
699          * @before <p>I would like to say: </p><b id="foo">Hello</b>
700          * @result <p><b id="foo">Hello</b>I would like to say: </p>
701          * @desc Prepends an Element to all paragraphs.
702          *      
703          * @example $("p").prepend( $("b") );
704          * @before <p>I would like to say: </p><b>Hello</b>
705          * @result <p><b>Hello</b>I would like to say: </p>
706          * @desc Prepends a jQuery object (similar to an Array of DOM Elements) to all paragraphs.
707          *
708          * @name prepend
709          * @type jQuery
710          * @param <Content> content Content to prepend to the target.
711          * @cat DOM/Manipulation
712          * @see append(<Content>)
713          * @see before(<Content>)
714          * @see after(<Content>)
715          */
716         prepend: function() {
717                 return this.domManip(arguments, true, -1, function(a){
718                         this.insertBefore( a, this.firstChild );
719                 });
720         },
721         
722         /**
723          * Insert content before each of the matched elements.
724          *
725          * @example $("p").before("<b>Hello</b>");
726          * @before <p>I would like to say: </p>
727          * @result <b>Hello</b><p>I would like to say: </p>
728          * @desc Inserts some HTML before all paragraphs.
729          *
730          * @example $("p").before( $("#foo")[0] );
731          * @before <p>I would like to say: </p><b id="foo">Hello</b>
732          * @result <b id="foo">Hello</b><p>I would like to say: </p>
733          * @desc Inserts an Element before all paragraphs.
734          *
735          * @example $("p").before( $("b") );
736          * @before <p>I would like to say: </p><b>Hello</b>
737          * @result <b>Hello</b><p>I would like to say: </p>
738          * @desc Inserts a jQuery object (similar to an Array of DOM Elements) before all paragraphs.
739          *
740          * @name before
741          * @type jQuery
742          * @param <Content> content Content to insert before each target.
743          * @cat DOM/Manipulation
744          * @see append(<Content>)
745          * @see prepend(<Content>)
746          * @see after(<Content>)
747          */
748         before: function() {
749                 return this.domManip(arguments, false, 1, function(a){
750                         this.parentNode.insertBefore( a, this );
751                 });
752         },
753
754         /**
755          * Insert content after each of the matched elements.
756          *
757          * @example $("p").after("<b>Hello</b>");
758          * @before <p>I would like to say: </p>
759          * @result <p>I would like to say: </p><b>Hello</b>
760          * @desc Inserts some HTML after all paragraphs.
761          *
762          * @example $("p").after( $("#foo")[0] );
763          * @before <b id="foo">Hello</b><p>I would like to say: </p>
764          * @result <p>I would like to say: </p><b id="foo">Hello</b>
765          * @desc Inserts an Element after all paragraphs.
766          *
767          * @example $("p").after( $("b") );
768          * @before <b>Hello</b><p>I would like to say: </p>
769          * @result <p>I would like to say: </p><b>Hello</b>
770          * @desc Inserts a jQuery object (similar to an Array of DOM Elements) after all paragraphs.
771          *
772          * @name after
773          * @type jQuery
774          * @param <Content> content Content to insert after each target.
775          * @cat DOM/Manipulation
776          * @see append(<Content>)
777          * @see prepend(<Content>)
778          * @see before(<Content>)
779          */
780         after: function() {
781                 return this.domManip(arguments, false, -1, function(a){
782                         this.parentNode.insertBefore( a, this.nextSibling );
783                 });
784         },
785
786         /**
787          * Revert the most recent 'destructive' operation, changing the set of matched elements
788          * to its previous state (right before the destructive operation).
789          *
790          * If there was no destructive operation before, an empty set is returned.
791          *
792          * A 'destructive' operation is any operation that changes the set of
793          * matched jQuery elements. These functions are: <code>add</code>,
794          * <code>children</code>, <code>clone</code>, <code>filter</code>,
795          * <code>find</code>, <code>not</code>, <code>next</code>,
796          * <code>parent</code>, <code>parents</code>, <code>prev</code> and <code>siblings</code>.
797          *
798          * @example $("p").find("span").end();
799          * @before <p><span>Hello</span>, how are you?</p>
800          * @result [ <p>...</p> ]
801          * @desc Selects all paragraphs, finds span elements inside these, and reverts the
802          * selection back to the paragraphs.
803          *
804          * @name end
805          * @type jQuery
806          * @cat DOM/Traversing
807          */
808         end: function() {
809                 return this.prevObject || jQuery([]);
810         },
811
812         /**
813          * Searches for all elements that match the specified expression.
814          * 
815          * This method is a good way to find additional descendant
816          * elements with which to process.
817          *
818          * All searching is done using a jQuery expression. The expression can be
819          * written using CSS 1-3 Selector syntax, or basic XPath.
820          *
821          * @example $("p").find("span");
822          * @before <p><span>Hello</span>, how are you?</p>
823          * @result [ <span>Hello</span> ]
824          * @desc Starts with all paragraphs and searches for descendant span
825          * elements, same as $("p span")
826          *
827          * @name find
828          * @type jQuery
829          * @param String expr An expression to search with.
830          * @cat DOM/Traversing
831          */
832         find: function(t) {
833                 var data = jQuery.map(this, function(a){ return jQuery.find(t,a); });
834                 return this.pushStack( /[^+>] [^+>]/.test( t ) || t.indexOf("..") > -1 ?
835                         jQuery.unique( data ) : data );
836         },
837
838         /**
839          * Clone matched DOM Elements and select the clones. 
840          *
841          * This is useful for moving copies of the elements to another
842          * location in the DOM.
843          *
844          * @example $("b").clone().prependTo("p");
845          * @before <b>Hello</b><p>, how are you?</p>
846          * @result <b>Hello</b><p><b>Hello</b>, how are you?</p>
847          * @desc Clones all b elements (and selects the clones) and prepends them to all paragraphs.
848          *
849          * @name clone
850          * @type jQuery
851          * @param Boolean deep (Optional) Set to false if you don't want to clone all descendant nodes, in addition to the element itself.
852          * @cat DOM/Manipulation
853          */
854         clone: function(deep) {
855                 if (jQuery.browser.msie) {
856                         // Need to remove events on the element and its descendants
857                         var $this = this.add(this.find("*"));
858                         $this.each(function() {
859                                 this._$events = {};
860                                 for (var type in this.$events)
861                                         this._$events[type] = jQuery.extend({},this.$events[type]);
862                         }).unbind();
863                 }
864
865                 // Do the clone
866                 var r = this.pushStack( jQuery.map( this, function(a){
867                         return a.cloneNode( deep != undefined ? deep : true );
868                 }) );
869
870                 if (jQuery.browser.msie) {
871                         // Add the events back to the original and its descendants
872                         $this.each(function() {
873                                 var events = this._$events;
874                                 for (var type in events)
875                                         for (var handler in events[type])
876                                                 jQuery.event.add(this, type, events[type][handler], events[type][handler].data);
877                                 this._$events = null;
878                         });
879                         
880                         // set selected values of select elements
881                         var selects = r.find('select');
882                         $this.filter('select').each(function(i) {
883                                 selects[i].selectedIndex = this.selectedIndex;
884                         });
885                 }
886
887                 // Return the cloned set
888                 return r;
889         },
890
891         /**
892          * Removes all elements from the set of matched elements that do not
893          * match the specified expression(s). This method is used to narrow down
894          * the results of a search.
895          *
896          * Provide a comma-separated list of expressions to apply multiple filters at once.
897          *
898          * @example $("p").filter(".selected")
899          * @before <p class="selected">Hello</p><p>How are you?</p>
900          * @result [ <p class="selected">Hello</p> ]
901          * @desc Selects all paragraphs and removes those without a class "selected".
902          *
903          * @example $("p").filter(".selected, :first")
904          * @before <p>Hello</p><p>Hello Again</p><p class="selected">And Again</p>
905          * @result [ <p>Hello</p>, <p class="selected">And Again</p> ]
906          * @desc Selects all paragraphs and removes those without class "selected" and being the first one.
907          *
908          * @name filter
909          * @type jQuery
910          * @param String expression Expression(s) to search with.
911          * @cat DOM/Traversing
912          */
913          
914         /**
915          * Removes all elements from the set of matched elements that do not
916          * pass the specified filter. This method is used to narrow down
917          * the results of a search.
918          *
919          * @example $("p").filter(function(index) {
920          *   return $("ol", this).length == 0;
921          * })
922          * @before <p><ol><li>Hello</li></ol></p><p>How are you?</p>
923          * @result [ <p>How are you?</p> ]
924          * @desc Remove all elements that have a child ol element
925          *
926          * @name filter
927          * @type jQuery
928          * @param Function filter A function to use for filtering
929          * @cat DOM/Traversing
930          */
931         filter: function(t) {
932                 return this.pushStack(
933                         jQuery.isFunction( t ) &&
934                         jQuery.grep(this, function(el, index){
935                                 return t.apply(el, [index])
936                         }) ||
937
938                         jQuery.multiFilter(t,this) );
939         },
940
941         /**
942          * Removes the specified Element from the set of matched elements. This
943          * method is used to remove a single Element from a jQuery object.
944          *
945          * @example $("p").not( $("#selected")[0] )
946          * @before <p>Hello</p><p id="selected">Hello Again</p>
947          * @result [ <p>Hello</p> ]
948          * @desc Removes the element with the ID "selected" from the set of all paragraphs.
949          *
950          * @name not
951          * @type jQuery
952          * @param Element el An element to remove from the set
953          * @cat DOM/Traversing
954          */
955
956         /**
957          * Removes elements matching the specified expression from the set
958          * of matched elements. This method is used to remove one or more
959          * elements from a jQuery object.
960          *
961          * @example $("p").not("#selected")
962          * @before <p>Hello</p><p id="selected">Hello Again</p>
963          * @result [ <p>Hello</p> ]
964          * @desc Removes the element with the ID "selected" from the set of all paragraphs.
965          *
966          * @name not
967          * @type jQuery
968          * @param String expr An expression with which to remove matching elements
969          * @cat DOM/Traversing
970          */
971
972         /**
973          * Removes any elements inside the array of elements from the set
974          * of matched elements. This method is used to remove one or more
975          * elements from a jQuery object.
976          *
977          * Please note: the expression cannot use a reference to the
978          * element name. See the two examples below.
979          *
980          * @example $("p").not( $("div p.selected") )
981          * @before <div><p>Hello</p><p class="selected">Hello Again</p></div>
982          * @result [ <p>Hello</p> ]
983          * @desc Removes all elements that match "div p.selected" from the total set of all paragraphs.
984          *
985          * @name not
986          * @type jQuery
987          * @param jQuery elems A set of elements to remove from the jQuery set of matched elements.
988          * @cat DOM/Traversing
989          */
990         not: function(t) {
991                 return this.pushStack(
992                         t.constructor == String &&
993                         jQuery.multiFilter(t, this, true) ||
994
995                         jQuery.grep(this, function(a) {
996                                 return ( t.constructor == Array || t.jquery )
997                                         ? jQuery.inArray( a, t ) < 0
998                                         : a != t;
999                         })
1000                 );
1001         },
1002
1003         /**
1004          * Adds more elements, matched by the given expression,
1005          * to the set of matched elements.
1006          *
1007          * @example $("p").add("span")
1008          * @before (HTML) <p>Hello</p><span>Hello Again</span>
1009          * @result (jQuery object matching 2 elements) [ <p>Hello</p>, <span>Hello Again</span> ]
1010          * @desc Compare the above result to the result of <code>$('p')</code>,
1011          * which would just result in <code><nowiki>[ <p>Hello</p> ]</nowiki></code>.
1012          * Using add(), matched elements of <code>$('span')</code> are simply
1013          * added to the returned jQuery-object.
1014          *
1015          * @name add
1016          * @type jQuery
1017          * @param String expr An expression whose matched elements are added
1018          * @cat DOM/Traversing
1019          */
1020          
1021         /**
1022          * Adds more elements, created on the fly, to the set of
1023          * matched elements.
1024          *
1025          * @example $("p").add("<span>Again</span>")
1026          * @before <p>Hello</p>
1027          * @result [ <p>Hello</p>, <span>Again</span> ]
1028          *
1029          * @name add
1030          * @type jQuery
1031          * @param String html A string of HTML to create on the fly.
1032          * @cat DOM/Traversing
1033          */
1034
1035         /**
1036          * Adds one or more Elements to the set of matched elements.
1037          *
1038          * @example $("p").add( document.getElementById("a") )
1039          * @before <p>Hello</p><p><span id="a">Hello Again</span></p>
1040          * @result [ <p>Hello</p>, <span id="a">Hello Again</span> ]
1041          *
1042          * @example $("p").add( document.forms[0].elements )
1043          * @before <p>Hello</p><p><form><input/><button/></form>
1044          * @result [ <p>Hello</p>, <input/>, <button/> ]
1045          *
1046          * @name add
1047          * @type jQuery
1048          * @param Element|Array<Element> elements One or more Elements to add
1049          * @cat DOM/Traversing
1050          */
1051         add: function(t) {
1052                 return this.pushStack( jQuery.merge(
1053                         this.get(),
1054                         t.constructor == String ?
1055                                 jQuery(t).get() :
1056                                 t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ?
1057                                         t : [t] )
1058                 );
1059         },
1060
1061         /**
1062          * Checks the current selection against an expression and returns true,
1063          * if at least one element of the selection fits the given expression.
1064          *
1065          * Does return false, if no element fits or the expression is not valid.
1066          *
1067          * filter(String) is used internally, therefore all rules that apply there
1068          * apply here, too.
1069          *
1070          * @example $("input[@type='checkbox']").parent().is("form")
1071          * @before <form><input type="checkbox" /></form>
1072          * @result true
1073          * @desc Returns true, because the parent of the input is a form element
1074          * 
1075          * @example $("input[@type='checkbox']").parent().is("form")
1076          * @before <form><p><input type="checkbox" /></p></form>
1077          * @result false
1078          * @desc Returns false, because the parent of the input is a p element
1079          *
1080          * @name is
1081          * @type Boolean
1082          * @param String expr The expression with which to filter
1083          * @cat DOM/Traversing
1084          */
1085         is: function(expr) {
1086                 return expr ? jQuery.multiFilter(expr,this).length > 0 : false;
1087         },
1088         
1089         /**
1090          * Get the content of the value attribute of the first matched element.
1091          *
1092          * Use caution when relying on this function to check the value of
1093          * multiple-select elements and checkboxes in a form. While it will
1094          * still work as intended, it may not accurately represent the value
1095          * the server will receive because these elements may send an array
1096          * of values. For more robust handling of field values, see the
1097          * [http://www.malsup.com/jquery/form/#fields fieldValue function of the Form Plugin].
1098          *
1099          * @example $("input").val();
1100          * @before <input type="text" value="some text"/>
1101          * @result "some text"
1102          *
1103          * @name val
1104          * @type String
1105          * @cat DOM/Attributes
1106          */
1107         
1108         /**
1109          *      Set the value attribute of every matched element.
1110          *
1111          * @example $("input").val("test");
1112          * @before <input type="text" value="some text"/>
1113          * @result <input type="text" value="test"/>
1114          *
1115          * @name val
1116          * @type jQuery
1117          * @param String val Set the property to the specified value.
1118          * @cat DOM/Attributes
1119          */
1120         val: function( val ) {
1121                 return val == undefined ?
1122                         ( this.length ? this[0].value : null ) :
1123                         this.attr( "value", val );
1124         },
1125         
1126         /**
1127          * Get the html contents of the first matched element.
1128          * This property is not available on XML documents.
1129          *
1130          * @example $("div").html();
1131          * @before <div><input/></div>
1132          * @result <input/>
1133          *
1134          * @name html
1135          * @type String
1136          * @cat DOM/Attributes
1137          */
1138         
1139         /**
1140          * Set the html contents of every matched element.
1141          * This property is not available on XML documents.
1142          *
1143          * @example $("div").html("<b>new stuff</b>");
1144          * @before <div><input/></div>
1145          * @result <div><b>new stuff</b></div>
1146          *
1147          * @name html
1148          * @type jQuery
1149          * @param String val Set the html contents to the specified value.
1150          * @cat DOM/Attributes
1151          */
1152         html: function( val ) {
1153                 return val == undefined ?
1154                         ( this.length ? this[0].innerHTML : null ) :
1155                         this.empty().append( val );
1156         },
1157         
1158         /**
1159          * @private
1160          * @name domManip
1161          * @param Array args
1162          * @param Boolean table Insert TBODY in TABLEs if one is not found.
1163          * @param Number dir If dir<0, process args in reverse order.
1164          * @param Function fn The function doing the DOM manipulation.
1165          * @type jQuery
1166          * @cat Core
1167          */
1168         domManip: function(args, table, dir, fn){
1169                 var clone = this.length > 1, a; 
1170
1171                 return this.each(function(){
1172                         if ( !a ) {
1173                                 a = jQuery.clean(args, this.ownerDocument);
1174                                 if ( dir < 0 )
1175                                         a.reverse();
1176                         }
1177
1178                         var obj = this;
1179
1180                         if ( table && jQuery.nodeName(this, "table") && jQuery.nodeName(a[0], "tr") )
1181                                 obj = this.getElementsByTagName("tbody")[0] || this.appendChild(document.createElement("tbody"));
1182
1183                         jQuery.each( a, function(){
1184                                 if ( jQuery.nodeName(this, "script") ) {
1185                                         if ( this.src )
1186                                                 jQuery.ajax({ url: this.src, async: false, dataType: "script" });
1187                                         else
1188                                                 (new Function( this.text || this.textContent || this.innerHTML || "" ))();
1189                                 } else
1190                                         fn.apply( obj, [ clone ? this.cloneNode(true) : this ] );
1191                         });
1192                 });
1193         }
1194 };
1195
1196 /**
1197  * Extends the jQuery object itself. Can be used to add functions into
1198  * the jQuery namespace and to [[Plugins/Authoring|add plugin methods]] (plugins).
1199  * 
1200  * @example jQuery.fn.extend({
1201  *   check: function() {
1202  *     return this.each(function() { this.checked = true; });
1203  *   },
1204  *   uncheck: function() {
1205  *     return this.each(function() { this.checked = false; });
1206  *   }
1207  * });
1208  * $("input[@type=checkbox]").check();
1209  * $("input[@type=radio]").uncheck();
1210  * @desc Adds two plugin methods.
1211  *
1212  * @example jQuery.extend({
1213  *   min: function(a, b) { return a < b ? a : b; },
1214  *   max: function(a, b) { return a > b ? a : b; }
1215  * });
1216  * @desc Adds two functions into the jQuery namespace
1217  *
1218  * @name $.extend
1219  * @param Object prop The object that will be merged into the jQuery object
1220  * @type Object
1221  * @cat Core
1222  */
1223
1224 /**
1225  * Extend one object with one or more others, returning the original,
1226  * modified, object. This is a great utility for simple inheritance.
1227  * 
1228  * @example var settings = { validate: false, limit: 5, name: "foo" };
1229  * var options = { validate: true, name: "bar" };
1230  * jQuery.extend(settings, options);
1231  * @result settings == { validate: true, limit: 5, name: "bar" }
1232  * @desc Merge settings and options, modifying settings
1233  *
1234  * @example var defaults = { validate: false, limit: 5, name: "foo" };
1235  * var options = { validate: true, name: "bar" };
1236  * var settings = jQuery.extend({}, defaults, options);
1237  * @result settings == { validate: true, limit: 5, name: "bar" }
1238  * @desc Merge defaults and options, without modifying the defaults
1239  *
1240  * @name $.extend
1241  * @param Object target The object to extend
1242  * @param Object prop1 The object that will be merged into the first.
1243  * @param Object propN (optional) More objects to merge into the first
1244  * @type Object
1245  * @cat JavaScript
1246  */
1247 jQuery.extend = jQuery.fn.extend = function() {
1248         // copy reference to target object
1249         var target = arguments[0], a = 1;
1250
1251         // extend jQuery itself if only one argument is passed
1252         if ( arguments.length == 1 ) {
1253                 target = this;
1254                 a = 0;
1255         }
1256         var prop;
1257         while ( (prop = arguments[a++]) != null )
1258                 // Extend the base object
1259                 for ( var i in prop ) target[i] = prop[i];
1260
1261         // Return the modified object
1262         return target;
1263 };
1264
1265 jQuery.extend({
1266         /**
1267          * Run this function to give control of the $ variable back
1268          * to whichever library first implemented it. This helps to make 
1269          * sure that jQuery doesn't conflict with the $ object
1270          * of other libraries.
1271          *
1272          * By using this function, you will only be able to access jQuery
1273          * using the 'jQuery' variable. For example, where you used to do
1274          * $("div p"), you now must do jQuery("div p").
1275          *
1276          * @example jQuery.noConflict();
1277          * // Do something with jQuery
1278          * jQuery("div p").hide();
1279          * // Do something with another library's $()
1280          * $("content").style.display = 'none';
1281          * @desc Maps the original object that was referenced by $ back to $
1282          *
1283          * @example jQuery.noConflict();
1284          * (function($) { 
1285          *   $(function() {
1286          *     // more code using $ as alias to jQuery
1287          *   });
1288          * })(jQuery);
1289          * // other code using $ as an alias to the other library
1290          * @desc Reverts the $ alias and then creates and executes a
1291          * function to provide the $ as a jQuery alias inside the functions
1292          * scope. Inside the function the original $ object is not available.
1293          * This works well for most plugins that don't rely on any other library.
1294          * 
1295          *
1296          * @name $.noConflict
1297          * @type undefined
1298          * @cat Core 
1299          */
1300         noConflict: function() {
1301                 if ( jQuery._$ )
1302                         $ = jQuery._$;
1303                 return jQuery;
1304         },
1305
1306         // This may seem like some crazy code, but trust me when I say that this
1307         // is the only cross-browser way to do this. --John
1308         isFunction: function( fn ) {
1309                 return !!fn && typeof fn != "string" && !fn.nodeName && 
1310                         fn.constructor != Array && /function/i.test( fn + "" );
1311         },
1312         
1313         // check if an element is in a XML document
1314         isXMLDoc: function(elem) {
1315                 return elem.tagName && elem.ownerDocument && !elem.ownerDocument.body;
1316         },
1317
1318         nodeName: function( elem, name ) {
1319                 return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
1320         },
1321
1322         /**
1323          * A generic iterator function, which can be used to seamlessly
1324          * iterate over both objects and arrays. This function is not the same
1325          * as $().each() - which is used to iterate, exclusively, over a jQuery
1326          * object. This function can be used to iterate over anything.
1327          *
1328          * The callback has two arguments:the key (objects) or index (arrays) as first
1329          * the first, and the value as the second.
1330          *
1331          * @example $.each( [0,1,2], function(i, n){
1332          *   alert( "Item #" + i + ": " + n );
1333          * });
1334          * @desc This is an example of iterating over the items in an array,
1335          * accessing both the current item and its index.
1336          *
1337          * @example $.each( { name: "John", lang: "JS" }, function(i, n){
1338          *   alert( "Name: " + i + ", Value: " + n );
1339          * });
1340          *
1341          * @desc This is an example of iterating over the properties in an
1342          * Object, accessing both the current item and its key.
1343          *
1344          * @name $.each
1345          * @param Object obj The object, or array, to iterate over.
1346          * @param Function fn The function that will be executed on every object.
1347          * @type Object
1348          * @cat JavaScript
1349          */
1350         // args is for internal usage only
1351         each: function( obj, fn, args ) {
1352                 if ( obj.length == undefined )
1353                         for ( var i in obj )
1354                                 fn.apply( obj[i], args || [i, obj[i]] );
1355                 else
1356                         for ( var i = 0, ol = obj.length; i < ol; i++ )
1357                                 if ( fn.apply( obj[i], args || [i, obj[i]] ) === false ) break;
1358                 return obj;
1359         },
1360         
1361         prop: function(elem, value, type, index, prop){
1362                         // Handle executable functions
1363                         if ( jQuery.isFunction( value ) )
1364                                 value = value.call( elem, [index] );
1365                                 
1366                         // exclude the following css properties to add px
1367                         var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i;
1368
1369                         // Handle passing in a number to a CSS property
1370                         return value && value.constructor == Number && type == "curCSS" && !exclude.test(prop) ?
1371                                 value + "px" :
1372                                 value;
1373         },
1374
1375         className: {
1376                 // internal only, use addClass("class")
1377                 add: function( elem, c ){
1378                         jQuery.each( (c || "").split(/\s+/), function(i, cur){
1379                                 if ( !jQuery.className.has( elem.className, cur ) )
1380                                         elem.className += ( elem.className ? " " : "" ) + cur;
1381                         });
1382                 },
1383
1384                 // internal only, use removeClass("class")
1385                 remove: function( elem, c ){
1386                         elem.className = c != undefined ?
1387                                 jQuery.grep( elem.className.split(/\s+/), function(cur){
1388                                         return !jQuery.className.has( c, cur ); 
1389                                 }).join(" ") : "";
1390                 },
1391
1392                 // internal only, use is(".class")
1393                 has: function( t, c ) {
1394                         return jQuery.inArray( c, (t.className || t).toString().split(/\s+/) ) > -1;
1395                 }
1396         },
1397
1398         /**
1399          * Swap in/out style options.
1400          * @private
1401          */
1402         swap: function(e,o,f) {
1403                 for ( var i in o ) {
1404                         e.style["old"+i] = e.style[i];
1405                         e.style[i] = o[i];
1406                 }
1407                 f.apply( e, [] );
1408                 for ( var i in o )
1409                         e.style[i] = e.style["old"+i];
1410         },
1411
1412         css: function(e,p) {
1413                 if ( p == "height" || p == "width" ) {
1414                         var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"];
1415
1416                         jQuery.each( d, function(){
1417                                 old["padding" + this] = 0;
1418                                 old["border" + this + "Width"] = 0;
1419                         });
1420
1421                         jQuery.swap( e, old, function() {
1422                                 if ( jQuery(e).is(':visible') ) {
1423                                         oHeight = e.offsetHeight;
1424                                         oWidth = e.offsetWidth;
1425                                 } else {
1426                                         e = jQuery(e.cloneNode(true))
1427                                                 .find(":radio").removeAttr("checked").end()
1428                                                 .css({
1429                                                         visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0"
1430                                                 }).appendTo(e.parentNode)[0];
1431
1432                                         var parPos = jQuery.css(e.parentNode,"position") || "static";
1433                                         if ( parPos == "static" )
1434                                                 e.parentNode.style.position = "relative";
1435
1436                                         oHeight = e.clientHeight;
1437                                         oWidth = e.clientWidth;
1438
1439                                         if ( parPos == "static" )
1440                                                 e.parentNode.style.position = "static";
1441
1442                                         e.parentNode.removeChild(e);
1443                                 }
1444                         });
1445
1446                         return p == "height" ? oHeight : oWidth;
1447                 }
1448
1449                 return jQuery.curCSS( e, p );
1450         },
1451
1452         curCSS: function(elem, prop, force) {
1453                 var ret;
1454
1455                 if (prop == "opacity" && jQuery.browser.msie) {
1456                         ret = jQuery.attr(elem.style, "opacity");
1457                         return ret == "" ? "1" : ret;
1458                 }
1459                 
1460                 if (prop.match(/float/i))
1461                         prop = jQuery.styleFloat;
1462
1463                 if (!force && elem.style[prop])
1464                         ret = elem.style[prop];
1465
1466                 else if (document.defaultView && document.defaultView.getComputedStyle) {
1467
1468                         if (prop.match(/float/i))
1469                                 prop = "float";
1470
1471                         prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase();
1472                         var cur = document.defaultView.getComputedStyle(elem, null);
1473
1474                         if ( cur )
1475                                 ret = cur.getPropertyValue(prop);
1476                         else if ( prop == "display" )
1477                                 ret = "none";
1478                         else
1479                                 jQuery.swap(elem, { display: "block" }, function() {
1480                                     var c = document.defaultView.getComputedStyle(this, "");
1481                                     ret = c && c.getPropertyValue(prop) || "";
1482                                 });
1483
1484                         if ( prop == "opacity" && ret == "" )
1485                                 ret = "1";
1486
1487                 } else if (elem.currentStyle) {
1488                         var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});
1489                         ret = elem.currentStyle[prop] || elem.currentStyle[newProp];
1490                 }
1491
1492                 return ret;
1493         },
1494         
1495         clean: function(a, doc) {
1496                 var r = [];
1497                 doc = doc || document;
1498
1499                 jQuery.each( a, function(i,arg){
1500                         if ( !arg ) return;
1501
1502                         if ( arg.constructor == Number )
1503                                 arg = arg.toString();
1504                         
1505                         // Convert html string into DOM nodes
1506                         if ( typeof arg == "string" ) {
1507                                 // Trim whitespace, otherwise indexOf won't work as expected
1508                                 var s = jQuery.trim(arg).toLowerCase(), div = doc.createElement("div"), tb = [];
1509
1510                                 var wrap =
1511                                         // option or optgroup
1512                                         !s.indexOf("<opt") &&
1513                                         [1, "<select>", "</select>"] ||
1514                                         
1515                                         !s.indexOf("<leg") &&
1516                                         [1, "<fieldset>", "</fieldset>"] ||
1517                                         
1518                                         (!s.indexOf("<thead") || !s.indexOf("<tbody") || !s.indexOf("<tfoot") || !s.indexOf("<colg")) &&
1519                                         [1, "<table>", "</table>"] ||
1520                                         
1521                                         !s.indexOf("<tr") &&
1522                                         [2, "<table><tbody>", "</tbody></table>"] ||
1523                                         
1524                                         // <thead> matched above
1525                                         (!s.indexOf("<td") || !s.indexOf("<th")) &&
1526                                         [3, "<table><tbody><tr>", "</tr></tbody></table>"] ||
1527                                         
1528                                         !s.indexOf("<col") &&
1529                                         [2, "<table><colgroup>", "</colgroup></table>"] ||
1530                                         
1531                                         [0,"",""];
1532
1533                                 // Go to html and back, then peel off extra wrappers
1534                                 div.innerHTML = wrap[1] + arg + wrap[2];
1535                                 
1536                                 // Move to the right depth
1537                                 while ( wrap[0]-- )
1538                                         div = div.firstChild;
1539                                 
1540                                 // Remove IE's autoinserted <tbody> from table fragments
1541                                 if ( jQuery.browser.msie ) {
1542                                         
1543                                         // String was a <table>, *may* have spurious <tbody>
1544                                         if ( !s.indexOf("<table") && s.indexOf("<tbody") < 0 ) 
1545                                                 tb = div.firstChild && div.firstChild.childNodes;
1546                                                 
1547                                         // String was a bare <thead> or <tfoot>
1548                                         else if ( wrap[1] == "<table>" && s.indexOf("<tbody") < 0 )
1549                                                 tb = div.childNodes;
1550
1551                                         for ( var n = tb.length-1; n >= 0 ; --n )
1552                                                 if ( jQuery.nodeName(tb[n], "tbody") && !tb[n].childNodes.length )
1553                                                         tb[n].parentNode.removeChild(tb[n]);
1554                                         
1555                                 }
1556                                 
1557                                 arg = jQuery.makeArray( div.childNodes );
1558                         }
1559
1560                         if ( 0 === arg.length && (!jQuery.nodeName(arg, "form") && !jQuery.nodeName(arg, "select")) )
1561                                 return;
1562
1563                         if ( arg[0] == undefined || jQuery.nodeName(arg, "form") || arg.options )
1564                                 r.push( arg );
1565                         else
1566                                 r = jQuery.merge( r, arg );
1567
1568                 });
1569
1570                 return r;
1571         },
1572         
1573         attr: function(elem, name, value){
1574                 var fix = jQuery.isXMLDoc(elem) ? {} : jQuery.props;
1575                 
1576                 // Certain attributes only work when accessed via the old DOM 0 way
1577                 if ( fix[name] ) {
1578                         if ( value != undefined ) elem[fix[name]] = value;
1579                         return elem[fix[name]];
1580                 } else if ( jQuery.browser.msie && name == "style" )
1581                         return jQuery.attr( elem.style, "cssText", value );
1582
1583                 else if ( value == undefined && jQuery.browser.msie && jQuery.nodeName(elem, "form") && (name == "action" || name == "method") )
1584                         return elem.getAttributeNode(name).nodeValue;
1585
1586                 // IE elem.getAttribute passes even for style
1587                 else if ( elem.tagName ) {
1588
1589                         if ( value != undefined ) elem.setAttribute( name, value );
1590                         if ( jQuery.browser.msie && /href|src/.test(name) && !jQuery.isXMLDoc(elem) ) 
1591                                 return elem.getAttribute( name, 2 );
1592                         return elem.getAttribute( name );
1593
1594                 // elem is actually elem.style ... set the style
1595                 } else {
1596                         // IE actually uses filters for opacity
1597                         if ( name == "opacity" && jQuery.browser.msie ) {
1598                                 if ( value != undefined ) {
1599                                         // IE has trouble with opacity if it does not have layout
1600                                         // Force it by setting the zoom level
1601                                         elem.zoom = 1; 
1602         
1603                                         // Set the alpha filter to set the opacity
1604                                         elem.filter = (elem.filter || "").replace(/alpha\([^)]*\)/,"") +
1605                                                 (parseFloat(value).toString() == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
1606                                 }
1607         
1608                                 return elem.filter ? 
1609                                         (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100).toString() : "";
1610                         }
1611                         name = name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});
1612                         if ( value != undefined ) elem[name] = value;
1613                         return elem[name];
1614                 }
1615         },
1616         
1617         /**
1618          * Remove the whitespace from the beginning and end of a string.
1619          *
1620          * @example $.trim("  hello, how are you?  ");
1621          * @result "hello, how are you?"
1622          *
1623          * @name $.trim
1624          * @type String
1625          * @param String str The string to trim.
1626          * @cat JavaScript
1627          */
1628         trim: function(t){
1629                 return (t||"").replace(/^\s+|\s+$/g, "");
1630         },
1631
1632         makeArray: function( a ) {
1633                 var r = [];
1634
1635                 // Need to use typeof to fight Safari childNodes crashes
1636                 if ( typeof a != "array" )
1637                         for ( var i = 0, al = a.length; i < al; i++ )
1638                                 r.push( a[i] );
1639                 else
1640                         r = a.slice( 0 );
1641
1642                 return r;
1643         },
1644
1645         inArray: function( b, a ) {
1646                 for ( var i = 0, al = a.length; i < al; i++ )
1647                         if ( a[i] == b )
1648                                 return i;
1649                 return -1;
1650         },
1651
1652         /**
1653          * Merge two arrays together by concatenating them.
1654          *
1655          * @example $.merge( [0,1,2], [2,3,4] )
1656          * @result [0,1,2,2,3,4]
1657          * @desc Merges two arrays.
1658          *
1659          * @name $.merge
1660          * @type Array
1661          * @param Array first The first array to merge, the elements of second are added.
1662          * @param Array second The second array to append to the first, unaltered.
1663          * @cat JavaScript
1664          */
1665         merge: function(first, second) {
1666                 // We have to loop this way because IE & Opera overwrite the length
1667                 // expando of getElementsByTagName
1668                 for ( var i = 0; second[i]; i++ )
1669                         first.push(second[i]);
1670                 return first;
1671         },
1672
1673         /**
1674          * Reduce an array (of jQuery objects only) to its unique elements.
1675          *
1676          * @example $.unique( [x1, x2, x3, x2, x3] )
1677          * @result [x1, x2, x3]
1678          * @desc Reduces the arrays of jQuery objects to unique elements by removing the duplicates of x2 and x3
1679          *
1680          * @name $.unique
1681          * @type Array
1682          * @param Array array The array to reduce to its unique jQuery objects.
1683          * @cat JavaScript
1684          */
1685         unique: function(first) {
1686                 var r = [], num = jQuery.mergeNum++;
1687
1688                 try {
1689                         for ( var i = 0, fl = first.length; i < fl; i++ )
1690                                 if ( num != first[i].mergeNum ) {
1691                                         first[i].mergeNum = num;
1692                                         r.push(first[i]);
1693                                 }
1694                 } catch(e) {
1695                         r = first;
1696                 }
1697
1698                 return r;
1699         },
1700
1701         mergeNum: 0,
1702
1703         /**
1704          * Filter items out of an array, by using a filter function.
1705          *
1706          * The specified function will be passed two arguments: The
1707          * current array item and the index of the item in the array. The
1708          * function must return 'true' to keep the item in the array, 
1709          * false to remove it.
1710          *
1711          * @example $.grep( [0,1,2], function(i){
1712          *   return i > 0;
1713          * });
1714          * @result [1, 2]
1715          *
1716          * @name $.grep
1717          * @type Array
1718          * @param Array array The Array to find items in.
1719          * @param Function fn The function to process each item against.
1720          * @param Boolean inv Invert the selection - select the opposite of the function.
1721          * @cat JavaScript
1722          */
1723         grep: function(elems, fn, inv) {
1724                 // If a string is passed in for the function, make a function
1725                 // for it (a handy shortcut)
1726                 if ( typeof fn == "string" )
1727                         fn = new Function("a","i","return " + fn);
1728
1729                 var result = [];
1730
1731                 // Go through the array, only saving the items
1732                 // that pass the validator function
1733                 for ( var i = 0, el = elems.length; i < el; i++ )
1734                         if ( !inv && fn(elems[i],i) || inv && !fn(elems[i],i) )
1735                                 result.push( elems[i] );
1736
1737                 return result;
1738         },
1739
1740         /**
1741          * Translate all items in an array to another array of items.
1742          *
1743          * The translation function that is provided to this method is 
1744          * called for each item in the array and is passed one argument: 
1745          * The item to be translated.
1746          *
1747          * The function can then return the translated value, 'null'
1748          * (to remove the item), or  an array of values - which will
1749          * be flattened into the full array.
1750          *
1751          * @example $.map( [0,1,2], function(i){
1752          *   return i + 4;
1753          * });
1754          * @result [4, 5, 6]
1755          * @desc Maps the original array to a new one and adds 4 to each value.
1756          *
1757          * @example $.map( [0,1,2], function(i){
1758          *   return i > 0 ? i + 1 : null;
1759          * });
1760          * @result [2, 3]
1761          * @desc Maps the original array to a new one and adds 1 to each
1762          * value if it is bigger then zero, otherwise it's removed-
1763          * 
1764          * @example $.map( [0,1,2], function(i){
1765          *   return [ i, i + 1 ];
1766          * });
1767          * @result [0, 1, 1, 2, 2, 3]
1768          * @desc Maps the original array to a new one, each element is added
1769          * with it's original value and the value plus one.
1770          *
1771          * @name $.map
1772          * @type Array
1773          * @param Array array The Array to translate.
1774          * @param Function fn The function to process each item against.
1775          * @cat JavaScript
1776          */
1777         map: function(elems, fn) {
1778                 // If a string is passed in for the function, make a function
1779                 // for it (a handy shortcut)
1780                 if ( typeof fn == "string" )
1781                         fn = new Function("a","return " + fn);
1782
1783                 var result = [];
1784
1785                 // Go through the array, translating each of the items to their
1786                 // new value (or values).
1787                 for ( var i = 0, el = elems.length; i < el; i++ ) {
1788                         var val = fn(elems[i],i);
1789
1790                         if ( val !== null && val != undefined ) {
1791                                 if ( val.constructor != Array ) val = [val];
1792                                 result = result.concat( val );
1793                         }
1794                 }
1795
1796                 return result;
1797         }
1798 });
1799
1800 /**
1801  * Contains flags for the useragent, read from navigator.userAgent.
1802  * Available flags are: safari, opera, msie, mozilla
1803  *
1804  * This property is available before the DOM is ready, therefore you can
1805  * use it to add ready events only for certain browsers.
1806  *
1807  * There are situations where object detections is not reliable enough, in that
1808  * cases it makes sense to use browser detection. Simply try to avoid both!
1809  *
1810  * A combination of browser and object detection yields quite reliable results.
1811  *
1812  * @example $.browser.msie
1813  * @desc Returns true if the current useragent is some version of microsoft's internet explorer
1814  *
1815  * @example if($.browser.safari) { $( function() { alert("this is safari!"); } ); }
1816  * @desc Alerts "this is safari!" only for safari browsers
1817  *
1818  * @property
1819  * @name $.browser
1820  * @type Boolean
1821  * @cat JavaScript
1822  */
1823  
1824 /*
1825  * Whether the W3C compliant box model is being used.
1826  *
1827  * @property
1828  * @name $.boxModel
1829  * @type Boolean
1830  * @cat JavaScript
1831  */
1832 new function() {
1833         var b = navigator.userAgent.toLowerCase();
1834
1835         // Figure out what browser is being used
1836         jQuery.browser = {
1837                 version: (b.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/) || [])[1],
1838                 safari: /webkit/.test(b),
1839                 opera: /opera/.test(b),
1840                 msie: /msie/.test(b) && !/opera/.test(b),
1841                 mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b)
1842         };
1843
1844         // Check to see if the W3C box model is being used
1845         jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
1846
1847         jQuery.styleFloat = jQuery.browser.msie ? "styleFloat" : "cssFloat",
1848
1849         jQuery.props = {
1850                 "for": "htmlFor",
1851                 "class": "className",
1852                 "float": jQuery.styleFloat,
1853                 cssFloat: jQuery.styleFloat,
1854                 styleFloat: jQuery.styleFloat,
1855                 innerHTML: "innerHTML",
1856                 className: "className",
1857                 value: "value",
1858                 disabled: "disabled",
1859                 checked: "checked",
1860                 readonly: "readOnly",
1861                 selected: "selected",
1862                 maxlength: "maxLength"
1863         };
1864
1865 };
1866
1867 /**
1868  * Get a set of elements containing the unique parents of the matched
1869  * set of elements.
1870  *
1871  * You may use an optional expression to filter the set of parent elements that will match.
1872  *
1873  * @example $("p").parent()
1874  * @before <div><p>Hello</p><p>Hello</p></div>
1875  * @result [ <div><p>Hello</p><p>Hello</p></div> ]
1876  * @desc Find the parent element of each paragraph.
1877  *
1878  * @example $("p").parent(".selected")
1879  * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
1880  * @result [ <div class="selected"><p>Hello Again</p></div> ]
1881  * @desc Find the parent element of each paragraph with a class "selected".
1882  *
1883  * @name parent
1884  * @type jQuery
1885  * @param String expr (optional) An expression to filter the parents with
1886  * @cat DOM/Traversing
1887  */
1888
1889 /**
1890  * Get a set of elements containing the unique ancestors of the matched
1891  * set of elements (except for the root element).
1892  *
1893  * The matched elements can be filtered with an optional expression.
1894  *
1895  * @example $("span").parents()
1896  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
1897  * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
1898  * @desc Find all parent elements of each span.
1899  *
1900  * @example $("span").parents("p")
1901  * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
1902  * @result [ <p><span>Hello</span></p> ]
1903  * @desc Find all parent elements of each span that is a paragraph.
1904  *
1905  * @name parents
1906  * @type jQuery
1907  * @param String expr (optional) An expression to filter the ancestors with
1908  * @cat DOM/Traversing
1909  */
1910
1911 /**
1912  * Get a set of elements containing the unique next siblings of each of the
1913  * matched set of elements.
1914  *
1915  * It only returns the very next sibling for each element, not all
1916  * next siblings.
1917  *
1918  * You may provide an optional expression to filter the match.
1919  *
1920  * @example $("p").next()
1921  * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
1922  * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
1923  * @desc Find the very next sibling of each paragraph.
1924  *
1925  * @example $("p").next(".selected")
1926  * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
1927  * @result [ <p class="selected">Hello Again</p> ]
1928  * @desc Find the very next sibling of each paragraph that has a class "selected".
1929  *
1930  * @name next
1931  * @type jQuery
1932  * @param String expr (optional) An expression to filter the next Elements with
1933  * @cat DOM/Traversing
1934  */
1935
1936 /**
1937  * Get a set of elements containing the unique previous siblings of each of the
1938  * matched set of elements.
1939  *
1940  * Use an optional expression to filter the matched set.
1941  *
1942  *      Only the immediately previous sibling is returned, not all previous siblings.
1943  *
1944  * @example $("p").prev()
1945  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
1946  * @result [ <div><span>Hello Again</span></div> ]
1947  * @desc Find the very previous sibling of each paragraph.
1948  *
1949  * @example $("p").prev(".selected")
1950  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
1951  * @result [ <div><span>Hello</span></div> ]
1952  * @desc Find the very previous sibling of each paragraph that has a class "selected".
1953  *
1954  * @name prev
1955  * @type jQuery
1956  * @param String expr (optional) An expression to filter the previous Elements with
1957  * @cat DOM/Traversing
1958  */
1959
1960 /**
1961  * Get a set of elements containing all of the unique siblings of each of the
1962  * matched set of elements.
1963  *
1964  * Can be filtered with an optional expressions.
1965  *
1966  * @example $("div").siblings()
1967  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
1968  * @result [ <p>Hello</p>, <p>And Again</p> ]
1969  * @desc Find all siblings of each div.
1970  *
1971  * @example $("div").siblings(".selected")
1972  * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
1973  * @result [ <p class="selected">Hello Again</p> ]
1974  * @desc Find all siblings with a class "selected" of each div.
1975  *
1976  * @name siblings
1977  * @type jQuery
1978  * @param String expr (optional) An expression to filter the sibling Elements with
1979  * @cat DOM/Traversing
1980  */
1981
1982 /**
1983  * Get a set of elements containing all of the unique children of each of the
1984  * matched set of elements.
1985  *
1986  * This set can be filtered with an optional expression that will cause
1987  * only elements matching the selector to be collected.
1988  *
1989  * @example $("div").children()
1990  * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
1991  * @result [ <span>Hello Again</span> ]
1992  * @desc Find all children of each div.
1993  *
1994  * @example $("div").children(".selected")
1995  * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div>
1996  * @result [ <p class="selected">Hello Again</p> ]
1997  * @desc Find all children with a class "selected" of each div.
1998  *
1999  * @name children
2000  * @type jQuery
2001  * @param String expr (optional) An expression to filter the child Elements with
2002  * @cat DOM/Traversing
2003  */
2004 jQuery.each({
2005         parent: "a.parentNode",
2006         parents: "jQuery.parents(a)",
2007         next: "jQuery.nth(a,2,'nextSibling')",
2008         prev: "jQuery.nth(a,2,'previousSibling')",
2009         siblings: "jQuery.sibling(a.parentNode.firstChild,a)",
2010         children: "jQuery.sibling(a.firstChild)"
2011 }, function(i,n){
2012         jQuery.fn[ i ] = function(a) {
2013                 var ret = jQuery.map(this,n);
2014                 if ( a && typeof a == "string" )
2015                         ret = jQuery.multiFilter(a,ret);
2016                 return this.pushStack( ret );
2017         };
2018 });
2019
2020 /**
2021  * Append all of the matched elements to another, specified, set of elements.
2022  * This operation is, essentially, the reverse of doing a regular
2023  * $(A).append(B), in that instead of appending B to A, you're appending
2024  * A to B.
2025  *
2026  * @example $("p").appendTo("#foo");
2027  * @before <p>I would like to say: </p><div id="foo"></div>
2028  * @result <div id="foo"><p>I would like to say: </p></div>
2029  * @desc Appends all paragraphs to the element with the ID "foo"
2030  *
2031  * @name appendTo
2032  * @type jQuery
2033  * @param <Content> content Content to append to the selected element to.
2034  * @cat DOM/Manipulation
2035  * @see append(<Content>)
2036  */
2037
2038 /**
2039  * Prepend all of the matched elements to another, specified, set of elements.
2040  * This operation is, essentially, the reverse of doing a regular
2041  * $(A).prepend(B), in that instead of prepending B to A, you're prepending
2042  * A to B.
2043  *
2044  * @example $("p").prependTo("#foo");
2045  * @before <p>I would like to say: </p><div id="foo"><b>Hello</b></div>
2046  * @result <div id="foo"><p>I would like to say: </p><b>Hello</b></div>
2047  * @desc Prepends all paragraphs to the element with the ID "foo"
2048  *
2049  * @name prependTo
2050  * @type jQuery
2051  * @param <Content> content Content to prepend to the selected element to.
2052  * @cat DOM/Manipulation
2053  * @see prepend(<Content>)
2054  */
2055
2056 /**
2057  * Insert all of the matched elements before another, specified, set of elements.
2058  * This operation is, essentially, the reverse of doing a regular
2059  * $(A).before(B), in that instead of inserting B before A, you're inserting
2060  * A before B.
2061  *
2062  * @example $("p").insertBefore("#foo");
2063  * @before <div id="foo">Hello</div><p>I would like to say: </p>
2064  * @result <p>I would like to say: </p><div id="foo">Hello</div>
2065  * @desc Same as $("#foo").before("p")
2066  *
2067  * @name insertBefore
2068  * @type jQuery
2069  * @param <Content> content Content to insert the selected element before.
2070  * @cat DOM/Manipulation
2071  * @see before(<Content>)
2072  */
2073
2074 /**
2075  * Insert all of the matched elements after another, specified, set of elements.
2076  * This operation is, essentially, the reverse of doing a regular
2077  * $(A).after(B), in that instead of inserting B after A, you're inserting
2078  * A after B.
2079  *
2080  * @example $("p").insertAfter("#foo");
2081  * @before <p>I would like to say: </p><div id="foo">Hello</div>
2082  * @result <div id="foo">Hello</div><p>I would like to say: </p>
2083  * @desc Same as $("#foo").after("p")
2084  *
2085  * @name insertAfter
2086  * @type jQuery
2087  * @param <Content> content Content to insert the selected element after.
2088  * @cat DOM/Manipulation
2089  * @see after(<Content>)
2090  */
2091
2092 jQuery.each({
2093         appendTo: "append",
2094         prependTo: "prepend",
2095         insertBefore: "before",
2096         insertAfter: "after"
2097 }, function(i,n){
2098         jQuery.fn[ i ] = function(){
2099                 var a = arguments;
2100                 return this.each(function(){
2101                         for ( var j = 0, al = a.length; j < al; j++ )
2102                                 jQuery(a[j])[n]( this );
2103                 });
2104         };
2105 });
2106
2107 /**
2108  * Remove an attribute from each of the matched elements.
2109  *
2110  * @example $("input").removeAttr("disabled")
2111  * @before <input disabled="disabled"/>
2112  * @result <input/>
2113  *
2114  * @name removeAttr
2115  * @type jQuery
2116  * @param String name The name of the attribute to remove.
2117  * @cat DOM/Attributes
2118  */
2119
2120 /**
2121  * Adds the specified class(es) to each of the set of matched elements.
2122  *
2123  * @example $("p").addClass("selected")
2124  * @before <p>Hello</p>
2125  * @result [ <p class="selected">Hello</p> ]
2126  *
2127  * @example $("p").addClass("selected highlight")
2128  * @before <p>Hello</p>
2129  * @result [ <p class="selected highlight">Hello</p> ]
2130  *
2131  * @name addClass
2132  * @type jQuery
2133  * @param String class One or more CSS classes to add to the elements
2134  * @cat DOM/Attributes
2135  * @see removeClass(String)
2136  */
2137
2138 /**
2139  * Removes all or the specified class(es) from the set of matched elements.
2140  *
2141  * @example $("p").removeClass()
2142  * @before <p class="selected">Hello</p>
2143  * @result [ <p>Hello</p> ]
2144  *
2145  * @example $("p").removeClass("selected")
2146  * @before <p class="selected first">Hello</p>
2147  * @result [ <p class="first">Hello</p> ]
2148  *
2149  * @example $("p").removeClass("selected highlight")
2150  * @before <p class="highlight selected first">Hello</p>
2151  * @result [ <p class="first">Hello</p> ]
2152  *
2153  * @name removeClass
2154  * @type jQuery
2155  * @param String class (optional) One or more CSS classes to remove from the elements
2156  * @cat DOM/Attributes
2157  * @see addClass(String)
2158  */
2159
2160 /**
2161  * Adds the specified class if it is not present, removes it if it is
2162  * present.
2163  *
2164  * @example $("p").toggleClass("selected")
2165  * @before <p>Hello</p><p class="selected">Hello Again</p>
2166  * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
2167  *
2168  * @name toggleClass
2169  * @type jQuery
2170  * @param String class A CSS class with which to toggle the elements
2171  * @cat DOM/Attributes
2172  */
2173
2174 /**
2175  * Removes all matched elements from the DOM. This does NOT remove them from the
2176  * jQuery object, allowing you to use the matched elements further.
2177  *
2178  * Can be filtered with an optional expressions.
2179  *
2180  * @example $("p").remove();
2181  * @before <p>Hello</p> how are <p>you?</p>
2182  * @result how are
2183  *
2184  * @example $("p").remove(".hello");
2185  * @before <p class="hello">Hello</p> how are <p>you?</p>
2186  * @result how are <p>you?</p>
2187  *
2188  * @name remove
2189  * @type jQuery
2190  * @param String expr (optional) A jQuery expression to filter elements by.
2191  * @cat DOM/Manipulation
2192  */
2193
2194 /**
2195  * Removes all child nodes from the set of matched elements.
2196  *
2197  * @example $("p").empty()
2198  * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
2199  * @result [ <p></p> ]
2200  *
2201  * @name empty
2202  * @type jQuery
2203  * @cat DOM/Manipulation
2204  */
2205
2206 jQuery.each( {
2207         removeAttr: function( key ) {
2208                 jQuery.attr( this, key, "" );
2209                 this.removeAttribute( key );
2210         },
2211         addClass: function(c){
2212                 jQuery.className.add(this,c);
2213         },
2214         removeClass: function(c){
2215                 jQuery.className.remove(this,c);
2216         },
2217         toggleClass: function( c ){
2218                 jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this, c);
2219         },
2220         remove: function(a){
2221                 if ( !a || jQuery.filter( a, [this] ).r.length )
2222                         this.parentNode.removeChild( this );
2223         },
2224         empty: function() {
2225                 while ( this.firstChild )
2226                         this.removeChild( this.firstChild );
2227         }
2228 }, function(i,n){
2229         jQuery.fn[ i ] = function() {
2230                 return this.each( n, arguments );
2231         };
2232 });
2233
2234 /**
2235  * Reduce the set of matched elements to a single element.
2236  * The position of the element in the set of matched elements
2237  * starts at 0 and goes to length - 1.
2238  *
2239  * @example $("p").eq(1)
2240  * @before <p>This is just a test.</p><p>So is this</p>
2241  * @result [ <p>So is this</p> ]
2242  *
2243  * @name eq
2244  * @type jQuery
2245  * @param Number pos The index of the element that you wish to limit to.
2246  * @cat Core
2247  */
2248
2249 /**
2250  * Reduce the set of matched elements to all elements before a given position.
2251  * The position of the element in the set of matched elements
2252  * starts at 0 and goes to length - 1.
2253  *
2254  * @example $("p").lt(1)
2255  * @before <p>This is just a test.</p><p>So is this</p>
2256  * @result [ <p>This is just a test.</p> ]
2257  *
2258  * @name lt
2259  * @type jQuery
2260  * @param Number pos Reduce the set to all elements below this position.
2261  * @cat Core
2262  */
2263
2264 /**
2265  * Reduce the set of matched elements to all elements after a given position.
2266  * The position of the element in the set of matched elements
2267  * starts at 0 and goes to length - 1.
2268  *
2269  * @example $("p").gt(0)
2270  * @before <p>This is just a test.</p><p>So is this</p>
2271  * @result [ <p>So is this</p> ]
2272  *
2273  * @name gt
2274  * @type jQuery
2275  * @param Number pos Reduce the set to all elements after this position.
2276  * @cat Core
2277  */
2278
2279 /**
2280  * Filter the set of elements to those that contain the specified text.
2281  *
2282  * @example $("p").contains("test")
2283  * @before <p>This is just a test.</p><p>So is this</p>
2284  * @result [ <p>This is just a test.</p> ]
2285  *
2286  * @name contains
2287  * @type jQuery
2288  * @param String str The string that will be contained within the text of an element.
2289  * @cat DOM/Traversing
2290  */
2291 jQuery.each( [ "eq", "lt", "gt", "contains" ], function(i,n){
2292         jQuery.fn[ n ] = function(num,fn) {
2293                 return this.filter( ":" + n + "(" + num + ")", fn );
2294         };
2295 });
2296
2297 /**
2298  * Get the current computed, pixel, width of the first matched element.
2299  *
2300  * @example $("p").width();
2301  * @before <p>This is just a test.</p>
2302  * @result 300
2303  *
2304  * @name width
2305  * @type String
2306  * @cat CSS
2307  */
2308
2309 /**
2310  * Set the CSS width of every matched element. If no explicit unit
2311  * was specified (like 'em' or '%') then "px" is added to the width.
2312  *
2313  * @example $("p").width(20);
2314  * @before <p>This is just a test.</p>
2315  * @result <p style="width:20px;">This is just a test.</p>
2316  *
2317  * @example $("p").width("20em");
2318  * @before <p>This is just a test.</p>
2319  * @result <p style="width:20em;">This is just a test.</p>
2320  *
2321  * @name width
2322  * @type jQuery
2323  * @param String|Number val Set the CSS property to the specified value.
2324  * @cat CSS
2325  */
2326  
2327 /**
2328  * Get the current computed, pixel, height of the first matched element.
2329  *
2330  * @example $("p").height();
2331  * @before <p>This is just a test.</p>
2332  * @result 300
2333  *
2334  * @name height
2335  * @type String
2336  * @cat CSS
2337  */
2338
2339 /**
2340  * Set the CSS height of every matched element. If no explicit unit
2341  * was specified (like 'em' or '%') then "px" is added to the width.
2342  *
2343  * @example $("p").height(20);
2344  * @before <p>This is just a test.</p>
2345  * @result <p style="height:20px;">This is just a test.</p>
2346  *
2347  * @example $("p").height("20em");
2348  * @before <p>This is just a test.</p>
2349  * @result <p style="height:20em;">This is just a test.</p>
2350  *
2351  * @name height
2352  * @type jQuery
2353  * @param String|Number val Set the CSS property to the specified value.
2354  * @cat CSS
2355  */
2356
2357 jQuery.each( [ "height", "width" ], function(i,n){
2358         jQuery.fn[ n ] = function(h) {
2359                 return h == undefined ?
2360                         ( this.length ? jQuery.css( this[0], n ) : null ) :
2361                         this.css( n, h.constructor == String ? h : h + "px" );
2362         };
2363 });