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