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