2 * jQuery - New Wave Javascript
4 * Copyright (c) 2006 John Resig (jquery.com)
5 * Dual licensed under the MIT (MIT-LICENSE.txt)
6 * and GPL (GPL-LICENSE.txt) licenses.
12 // Global undefined variable
13 window.undefined = window.undefined;
16 * Create a new jQuery Object
18 * @test ok( Array.prototype.push, "Array.push()" );
19 * @test ok( Function.prototype.apply, "Function.apply()" );
20 * @test ok( document.getElementById, "getElementById" );
21 * @test ok( document.getElementsByTagName, "getElementsByTagName" );
22 * @test ok( RegExp, "RegExp" );
23 * @test ok( jQuery, "jQuery" );
24 * @test ok( $, "$()" );
30 function jQuery(a,c) {
32 // Initalize the extra macro functions
33 if ( !jQuery.initDone ) jQuery.init();
35 // Shortcut for document ready (because $(document).each() is silly)
36 if ( a && a.constructor == Function && jQuery.fn.ready )
37 return jQuery(document).ready(a);
39 // Make sure that a selection was provided
40 a = a || jQuery.context || document;
43 * Handle support for overriding other $() functions. Way too many libraries
44 * provide this function to simply ignore it and overwrite it.
47 // Check to see if this is a possible collision case
48 if ( jQuery._$ && !c && a.constructor == String &&
50 // Make sure that the expression is a colliding one
51 !/[^a-zA-Z0-9_-]/.test(a) &&
53 // and that there are no elements that match it
54 // (this is the one truly ambiguous case)
55 !document.getElementsByTagName(a).length )
57 // Use the default method, in case it works some voodoo
58 return jQuery._$( a );
61 // Watch for when a jQuery object is passed as the selector
63 return $( jQuery.merge( a, [] ) );
65 // Watch for when a jQuery object is passed at the context
67 return $( c ).find(a);
69 // If the context is global, return a new object
71 return new jQuery(a,c);
73 // Handle HTML strings
74 var m = /^[^<]*(<.+>)[^>]*$/.exec(a);
75 if ( m ) a = jQuery.clean( [ m[1] ] );
77 // Watch for when an array is passed in
78 this.get( a.constructor == Array || a.length && !a.nodeType && a[0] != undefined && a[0].nodeType ?
79 // Assume that it is an array of DOM Elements
80 jQuery.merge( a, [] ) :
82 // Find the matching elements and save them for later
83 jQuery.find( a, c ) );
85 var fn = arguments[ arguments.length - 1 ];
86 if ( fn && fn.constructor == Function )
90 // Map over the $ in case of overwrite
94 // Map the jQuery namespace to the '$' one
97 jQuery.fn = jQuery.prototype = {
99 * The current SVN version of jQuery.
110 * The number of elements currently matched.
112 * @example $("img").length;
113 * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
116 * @test cmpOK( $("div").length, "==", 2, "Get Number of Elements Found" );
125 * The number of elements currently matched.
127 * @example $("img").size();
128 * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
131 * @test cmpOK( $("div").size(), "==", 2, "Get Number of Elements Found" );
142 * Access all matched elements. This serves as a backwards-compatible
143 * way of accessing all matched elements (other than the jQuery object
144 * itself, which is, in fact, an array of elements).
146 * @example $("img").get();
147 * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
148 * @result [ <img src="test1.jpg"/> <img src="test2.jpg"/> ]
150 * @test isSet( $("div").get(), q("main","foo"), "Get All Elements" );
153 * @type Array<Element>
158 * Access a single matched element. num is used to access the
159 * Nth element matched.
161 * @example $("img").get(1);
162 * @before <img src="test1.jpg"/> <img src="test2.jpg"/>
163 * @result [ <img src="test1.jpg"/> ]
165 * @test cmpOK( $("div").get(0), "==", document.getElementById("main"), "Get A Single Element" );
169 * @param Number num Access the element in the Nth position.
174 * Set the jQuery object to an array of elements.
176 * @example $("img").get([ document.body ]);
177 * @result $("img").get() == [ document.body ]
182 * @param Elements elems An array of elements
185 get: function( num ) {
186 // Watch for when an array (of elements) is passed in
187 if ( num && num.constructor == Array ) {
189 // Use a tricky hack to make the jQuery object
190 // look and feel like an array
192 [].push.apply( this, num );
196 return num == undefined ?
198 // Return a 'clean' array
199 jQuery.map( this, function(a){ return a } ) :
201 // Return just the object
206 * Execute a function within the context of every matched element.
207 * This means that every time the passed-in function is executed
208 * (which is once for every element matched) the 'this' keyword
209 * points to the specific element.
211 * Additionally, the function, when executed, is passed a single
212 * argument representing the position of the element in the matched
215 * @example $("img").each(function(){ this.src = "test.jpg"; });
216 * @before <img/> <img/>
217 * @result <img src="test.jpg"/> <img src="test.jpg"/>
219 * @test var div = $("div");
220 * div.each(function(){this.foo = 'zoo';});
222 * for ( var i = 0; i < div.size(); i++ ) {
223 * if ( div.get(i).foo != "zoo" ) pass = false;
225 * ok( pass, "Execute a function, Relative" );
229 * @param Function fn A function to execute
232 each: function( fn, args ) {
233 return jQuery.each( this, fn, args );
237 * Access a property on the first matched element.
238 * This method makes it easy to retreive a property value
239 * from the first matched element.
241 * @example $("img").attr("src");
242 * @before <img src="test.jpg"/>
247 * @param String name The name of the property to access.
252 * Set a hash of key/value object properties to all matched elements.
253 * This serves as the best way to set a large number of properties
254 * on all matched elements.
256 * @example $("img").attr({ src: "test.jpg", alt: "Test Image" });
258 * @result <img src="test.jpg" alt="Test Image"/>
260 * @test var div = $("div");
261 * div.attr({foo: 'baz', zoo: 'ping'});
263 * for ( var i = 0; i < div.size(); i++ ) {
264 * if ( div.get(i).foo != "baz" && div.get(i).zoo != "ping" ) pass = false;
266 * ok( pass, "Set Multiple Attributes" );
270 * @param Hash prop A set of key/value pairs to set as object properties.
275 * Set a single property to a value, on all matched elements.
277 * @example $("img").attr("src","test.jpg");
279 * @result <img src="test.jpg"/>
281 * @test var div = $("div");
282 * div.attr("foo", "bar");
284 * for ( var i = 0; i < div.size(); i++ ) {
285 * if ( div.get(i).foo != "bar" ) pass = false;
287 * ok( pass, "Set Attribute" );
291 * @param String key The name of the property to set.
292 * @param Object value The value to set the property to.
295 attr: function( key, value, type ) {
296 // Check to see if we're setting style values
297 return key.constructor != String || value != undefined ?
298 this.each(function(){
299 // See if we're setting a hash of styles
300 if ( value == undefined )
301 // Set all the styles
302 for ( var prop in key )
304 type ? this.style : this,
308 // See if we're setting a single key/value style
311 type ? this.style : this,
316 // Look for the case where we're accessing a style value
317 jQuery[ type || "attr" ]( this[0], key );
321 * Access a style property on the first matched element.
322 * This method makes it easy to retreive a style property value
323 * from the first matched element.
325 * @example $("p").css("red");
326 * @before <p style="color:red;">Test Paragraph.</p>
331 * @param String name The name of the property to access.
336 * Set a hash of key/value style properties to all matched elements.
337 * This serves as the best way to set a large number of style properties
338 * on all matched elements.
340 * @example $("p").css({ color: "red", background: "blue" });
341 * @before <p>Test Paragraph.</p>
342 * @result <p style="color:red; background:blue;">Test Paragraph.</p>
346 * @param Hash prop A set of key/value pairs to set as style properties.
351 * Set a single style property to a value, on all matched elements.
353 * @example $("p").css("color","red");
354 * @before <p>Test Paragraph.</p>
355 * @result <p style="color:red;">Test Paragraph.</p>
359 * @param String key The name of the property to set.
360 * @param Object value The value to set the property to.
363 css: function( key, value ) {
364 return this.attr( key, value, "curCSS" );
368 * Retreive the text contents of all matched elements. The result is
369 * a string that contains the combined text contents of all matched
370 * elements. This method works on both HTML and XML documents.
372 * @example $("p").text();
373 * @before <p>Test Paragraph.</p>
374 * @result Test Paragraph.
383 for ( var j = 0; j < e.length; j++ ) {
384 var r = e[j].childNodes;
385 for ( var i = 0; i < r.length; i++ )
386 t += r[i].nodeType != 1 ?
387 r[i].nodeValue : jQuery.fn.text([ r[i] ]);
393 * Wrap all matched elements with a structure of other elements.
394 * This wrapping process is most useful for injecting additional
395 * stucture into a document, without ruining the original semantic
396 * qualities of a document.
398 * The way that is works is that it goes through the first element argument
399 * provided and finds the deepest element within the structure - it is that
400 * element that will en-wrap everything else.
402 * @example $("p").wrap("<div class='wrap'></div>");
403 * @before <p>Test Paragraph.</p>
404 * @result <div class='wrap'><p>Test Paragraph.</p></div>
408 * @any String html A string of HTML, that will be created on the fly and wrapped around the target.
409 * @any Element elem A DOM element that will be wrapped.
410 * @any Array<Element> elems An array of elements, the first of which will be wrapped.
411 * @any Object obj Any object, converted to a string, then a text node.
412 * @cat DOM/Manipulation
415 // The elements to wrap the target around
416 var a = jQuery.clean(arguments);
418 // Wrap each of the matched elements individually
419 return this.each(function(){
420 // Clone the structure that we're using to wrap
421 var b = a[0].cloneNode(true);
423 // Insert it before the element to be wrapped
424 this.parentNode.insertBefore( b, this );
426 // Find he deepest point in the wrap structure
427 while ( b.firstChild )
430 // Move the matched element to within the wrap structure
431 b.appendChild( this );
436 * Append any number of elements to the inside of all matched elements.
437 * This operation is similar to doing an appendChild to all the
438 * specified elements, adding them into the document.
440 * @example $("p").append("<b>Hello</b>");
441 * @before <p>I would like to say: </p>
442 * @result <p>I would like to say: <b>Hello</b></p>
446 * @any String html A string of HTML, that will be created on the fly and appended to the target.
447 * @any Element elem A DOM element that will be appended.
448 * @any Array<Element> elems An array of elements, all of which will be appended.
449 * @any Object obj Any object, converted to a string, then a text node.
450 * @cat DOM/Manipulation
453 return this.domManip(arguments, true, 1, function(a){
454 this.appendChild( a );
459 * Prepend any number of elements to the inside of all matched elements.
460 * This operation is the best way to insert a set of elements inside, at the
461 * beginning, of all the matched element.
463 * @example $("p").prepend("<b>Hello</b>");
464 * @before <p>, how are you?</p>
465 * @result <p><b>Hello</b>, how are you?</p>
469 * @any String html A string of HTML, that will be created on the fly and prepended to the target.
470 * @any Element elem A DOM element that will be prepended.
471 * @any Array<Element> elems An array of elements, all of which will be prepended.
472 * @any Object obj Any object, converted to a string, then a text node.
473 * @cat DOM/Manipulation
475 prepend: function() {
476 return this.domManip(arguments, true, -1, function(a){
477 this.insertBefore( a, this.firstChild );
482 * Insert any number of elements before each of the matched elements.
484 * @example $("p").before("<b>Hello</b>");
485 * @before <p>how are you?</p>
486 * @result <b>Hello</b><p>how are you?</p>
490 * @any String html A string of HTML, that will be created on the fly and inserted.
491 * @any Element elem A DOM element that will beinserted.
492 * @any Array<Element> elems An array of elements, all of which will be inserted.
493 * @any Object obj Any object, converted to a string, then a text node.
494 * @cat DOM/Manipulation
497 return this.domManip(arguments, false, 1, function(a){
498 this.parentNode.insertBefore( a, this );
503 * Insert any number of elements after each of the matched elements.
505 * @example $("p").after("<p>I'm doing fine.</p>");
506 * @before <p>How are you?</p>
507 * @result <p>How are you?</p><p>I'm doing fine.</p>
511 * @any String html A string of HTML, that will be created on the fly and inserted.
512 * @any Element elem A DOM element that will beinserted.
513 * @any Array<Element> elems An array of elements, all of which will be inserted.
514 * @any Object obj Any object, converted to a string, then a text node.
515 * @cat DOM/Manipulation
518 return this.domManip(arguments, false, -1, function(a){
519 this.parentNode.insertBefore( a, this.nextSibling );
524 * End the most recent 'destructive' operation, reverting the list of matched elements
525 * back to its previous state. After an end operation, the list of matched elements will
526 * revert to the last state of matched elements.
528 * @example $("p").find("span").end();
529 * @before <p><span>Hello</span>, how are you?</p>
530 * @result $("p").find("span").end() == [ <p>...</p> ]
534 * @cat DOM/Traversing
537 return this.get( this.stack.pop() );
541 * Searches for all elements that match the specified expression.
542 * This method is the optimal way of finding additional descendant
543 * elements with which to process.
545 * All searching is done using a jQuery expression. The expression can be
546 * written using CSS 1-3 Selector syntax, or basic XPath.
548 * @example $("p").find("span");
549 * @before <p><span>Hello</span>, how are you?</p>
550 * @result $("p").find("span") == [ <span>Hello</span> ]
554 * @param String expr An expression to search with.
555 * @cat DOM/Traversing
558 return this.pushStack( jQuery.map( this, function(a){
559 return jQuery.find(t,a);
563 clone: function(deep) {
564 return this.pushStack( jQuery.map( this, function(a){
565 return a.cloneNode( deep != undefined ? deep : true );
570 * Removes all elements from the set of matched elements that do not
571 * match the specified expression. This method is used to narrow down
572 * the results of a search.
574 * All searching is done using a jQuery expression. The expression
575 * can be written using CSS 1-3 Selector syntax, or basic XPath.
577 * @example $("p").filter(".selected")
578 * @before <p class="selected">Hello</p><p>How are you?</p>
579 * @result $("p").filter(".selected") == [ <p class="selected">Hello</p> ]
583 * @param String expr An expression to search with.
584 * @cat DOM/Traversing
588 * Removes all elements from the set of matched elements that do not
589 * match at least one of the expressions passed to the function. This
590 * method is used when you want to filter the set of matched elements
591 * through more than one expression.
593 * Elements will be retained in the jQuery object if they match at
594 * least one of the expressions passed.
596 * @example $("p").filter([".selected", ":first"])
597 * @before <p>Hello</p><p>Hello Again</p><p class="selected">And Again</p>
598 * @result $("p").filter([".selected", ":first"]) == [ <p>Hello</p>, <p class="selected">And Again</p> ]
602 * @param Array<String> exprs A set of expressions to evaluate against
603 * @cat DOM/Traversing
605 filter: function(t) {
606 return this.pushStack(
607 t.constructor == Array &&
608 jQuery.map(this,function(a){
609 for ( var i = 0; i < t.length; i++ )
610 if ( jQuery.filter(t[i],[a]).r.length )
614 t.constructor == Boolean &&
615 ( t ? this.get() : [] ) ||
617 t.constructor == Function &&
618 jQuery.grep( this, t ) ||
620 jQuery.filter(t,this).r, arguments );
624 * Removes the specified Element from the set of matched elements. This
625 * method is used to remove a single Element from a jQuery object.
627 * @example $("p").not( document.getElementById("selected") )
628 * @before <p>Hello</p><p id="selected">Hello Again</p>
629 * @result [ <p>Hello</p> ]
633 * @param Element el An element to remove from the set
634 * @cat DOM/Traversing
638 * Removes elements matching the specified expression from the set
639 * of matched elements. This method is used to remove one or more
640 * elements from a jQuery object.
642 * @example $("p").not("#selected")
643 * @before <p>Hello</p><p id="selected">Hello Again</p>
644 * @result [ <p>Hello</p> ]
648 * @param String expr An expression with which to remove matching elements
649 * @cat DOM/Traversing
652 return this.pushStack( t.constructor == String ?
653 jQuery.filter(t,this,false).r :
654 jQuery.grep(this,function(a){ return a != t; }), arguments );
658 * Adds the elements matched by the expression to the jQuery object. This
659 * can be used to concatenate the result sets of two expressions.
661 * @example $("p").add("span")
662 * @before <p>Hello</p><p><span>Hello Again</span></p>
663 * @result [ <p>Hello</p>, <span>Hello Again</span> ]
667 * @param String expr An expression whose matched elements are added
668 * @cat DOM/Traversing
672 * Adds each of the Elements in the array to the set of matched elements.
673 * This is used to add a set of Elements to a jQuery object.
675 * @example $("p").add([document.getElementById("a"), document.getElementById("b")])
676 * @before <p>Hello</p><p><span id="a">Hello Again</span><span id="b">And Again</span></p>
677 * @result [ <p>Hello</p>, <span id="a">Hello Again</span>, <span id="b">And Again</span> ]
681 * @param Array<Element> els An array of Elements to add
686 * Adds a single Element to the set of matched elements. This is used to
687 * add a single Element to a jQuery object.
689 * @example $("p").add( document.getElementById("a") )
690 * @before <p>Hello</p><p><span id="a">Hello Again</span></p>
691 * @result [ <p>Hello</p>, <span id="a">Hello Again</span> ]
695 * @param Element el An Element to add
699 return this.pushStack( jQuery.merge( this, t.constructor == String ?
700 jQuery.find(t) : t.constructor == Array ? t : [t] ), arguments );
704 * A wrapper function for each() to be used by append and prepend.
705 * Handles cases where you're trying to modify the inner contents of
706 * a table, when you actually need to work with the tbody.
709 * @param {String} expr The expression with which to filter
714 return expr ? jQuery.filter(expr,this).r.length > 0 : this.length > 0;
723 * @param Boolean table
725 * @param Function fn The function doing the DOM manipulation.
728 domManip: function(args, table, dir, fn){
729 var clone = this.size() > 1;
730 var a = jQuery.clean(args);
732 return this.each(function(){
735 if ( table && this.nodeName == "TABLE" && a[0].nodeName != "THEAD" ) {
736 var tbody = this.getElementsByTagName("tbody");
738 if ( !tbody.length ) {
739 obj = document.createElement("tbody");
740 this.appendChild( obj );
745 for ( var i = ( dir < 0 ? a.length - 1 : 0 );
746 i != ( dir < 0 ? dir : a.length ); i += dir ) {
747 fn.apply( obj, [ clone ? a[i].cloneNode(true) : a[i] ] );
761 pushStack: function(a,args) {
762 var fn = args && args[args.length-1];
764 if ( !fn || fn.constructor != Function ) {
765 if ( !this.stack ) this.stack = [];
766 this.stack.push( this.get() );
769 var old = this.get();
771 if ( fn.constructor == Function )
772 return this.each( fn );
791 * Extend one object with another, returning the original,
792 * modified, object. This is a great utility for simple inheritance.
794 * @name jQuery.extend
795 * @param Object obj The object to extend
796 * @param Object prop The object that will be merged into the first.
800 jQuery.extend = jQuery.fn.extend = function(obj,prop) {
801 if ( !prop ) { prop = obj; obj = this; }
802 for ( var i in prop ) obj[i] = prop[i];
815 jQuery.initDone = true;
817 jQuery.each( jQuery.macros.axis, function(i,n){
818 jQuery.fn[ i ] = function(a) {
819 var ret = jQuery.map(this,n);
820 if ( a && a.constructor == String )
821 ret = jQuery.filter(a,ret).r;
822 return this.pushStack( ret, arguments );
826 jQuery.each( jQuery.macros.to, function(i,n){
827 jQuery.fn[ i ] = function(){
829 return this.each(function(){
830 for ( var j = 0; j < a.length; j++ )
836 jQuery.each( jQuery.macros.each, function(i,n){
837 jQuery.fn[ i ] = function() {
838 return this.each( n, arguments );
842 jQuery.each( jQuery.macros.filter, function(i,n){
843 jQuery.fn[ n ] = function(num,fn) {
844 return this.filter( ":" + n + "(" + num + ")", fn );
848 jQuery.each( jQuery.macros.attr, function(i,n){
850 jQuery.fn[ i ] = function(h) {
851 return h == undefined ?
852 this.length ? this[0][n] : null :
857 jQuery.each( jQuery.macros.css, function(i,n){
858 jQuery.fn[ n ] = function(h) {
859 return h == undefined ?
860 ( this.length ? jQuery.css( this[0], n ) : null ) :
868 * A generic iterator function, which can be used to seemlessly
869 * iterate over both objects and arrays.
872 * @param Object obj The object, or array, to iterate over.
873 * @param Object fn The function that will be executed on every object.
877 each: function( obj, fn, args ) {
878 if ( obj.length == undefined )
880 fn.apply( obj[i], args || [i, obj[i]] );
882 for ( var i = 0; i < obj.length; i++ )
883 fn.apply( obj[i], args || [i, obj[i]] );
889 if (jQuery.className.has(o,c)) return;
890 o.className += ( o.className ? " " : "" ) + c;
892 remove: function(o,c){
893 o.className = !c ? "" :
895 new RegExp("(^|\\s*\\b[^-])"+c+"($|\\b(?=[^-]))", "g"), "");
900 return new RegExp("(^|\\s)" + a + "(\\s|$)").test(e);
905 * Swap in/out style options.
908 swap: function(e,o,f) {
910 e.style["old"+i] = e.style[i];
915 e.style[i] = e.style["old"+i];
919 if ( p == "height" || p == "width" ) {
920 var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"];
923 old["padding" + d[i]] = 0;
924 old["border" + d[i] + "Width"] = 0;
927 jQuery.swap( e, old, function() {
928 if (jQuery.css(e,"display") != "none") {
929 oHeight = e.offsetHeight;
930 oWidth = e.offsetWidth;
932 jQuery.swap( e, { visibility: "hidden", position: "absolute", display: "" },
934 oHeight = e.clientHeight;
935 oWidth = e.clientWidth;
939 return p == "height" ? oHeight : oWidth;
940 } else if ( p == "opacity" && jQuery.browser.msie )
941 return parseFloat( jQuery.curCSS(e,"filter").replace(/[^0-9.]/,"") ) || 1;
943 return jQuery.curCSS( e, p );
946 curCSS: function(e,p,force) {
949 if (!force && e.style[p])
951 else if (e.currentStyle) {
952 p = p.replace(/\-(\w)/g,function(m,c){return c.toUpperCase()});
953 r = e.currentStyle[p];
954 } else if (document.defaultView && document.defaultView.getComputedStyle) {
955 p = p.replace(/([A-Z])/g,"-$1").toLowerCase();
956 var s = document.defaultView.getComputedStyle(e,"");
957 r = s ? s.getPropertyValue(p) : null;
965 for ( var i = 0; i < a.length; i++ ) {
966 if ( a[i].constructor == String ) {
970 if ( !a[i].indexOf("<thead") || !a[i].indexOf("<tbody") ) {
972 a[i] = "<table>" + a[i] + "</table>";
973 } else if ( !a[i].indexOf("<tr") ) {
975 a[i] = "<table>" + a[i] + "</table>";
976 } else if ( !a[i].indexOf("<td") || !a[i].indexOf("<th") ) {
978 a[i] = "<table><tbody><tr>" + a[i] + "</tr></tbody></table>";
981 var div = document.createElement("div");
982 div.innerHTML = a[i];
985 div = div.firstChild;
986 if ( table != "thead" ) div = div.firstChild;
987 if ( table == "td" ) div = div.firstChild;
990 for ( var j = 0; j < div.childNodes.length; j++ )
991 r.push( div.childNodes[j] );
992 } else if ( a[i].jquery || a[i].length && !a[i].nodeType )
993 for ( var k = 0; k < a[i].length; k++ )
995 else if ( a[i] !== null )
996 r.push( a[i].nodeType ? a[i] : document.createTextNode(a[i].toString()) );
1002 "": "m[2]== '*'||a.nodeName.toUpperCase()==m[2].toUpperCase()",
1003 "#": "a.getAttribute('id')&&a.getAttribute('id')==m[2]",
1011 last: "i==r.length-1",
1016 "first-child": "jQuery.sibling(a,0).cur",
1017 "last-child": "jQuery.sibling(a,0).last",
1018 "only-child": "jQuery.sibling(a).length==1",
1021 parent: "a.childNodes.length",
1022 empty: "!a.childNodes.length",
1025 contains: "(a.innerText||a.innerHTML).indexOf(m[3])>=0",
1028 visible: "a.type!='hidden'&&jQuery.css(a,'display')!='none'&&jQuery.css(a,'visibility')!='hidden'",
1029 hidden: "a.type=='hidden'||jQuery.css(a,'display')=='none'||jQuery.css(a,'visibility')=='hidden'",
1032 enabled: "!a.disabled",
1033 disabled: "a.disabled",
1034 checked: "a.checked",
1035 selected: "a.selected"
1037 ".": "jQuery.className.has(a,m[2])",
1041 "^=": "!z.indexOf(m[4])",
1042 "$=": "z.substr(z.length - m[4].length,m[4].length)==m[4]",
1043 "*=": "z.indexOf(m[4])>=0",
1046 "[": "jQuery.find(m[2],a).length"
1050 "\\.\\.|/\\.\\.", "a.parentNode",
1051 ">|/", "jQuery.sibling(a.firstChild)",
1052 "\\+", "jQuery.sibling(a).next",
1055 var s = jQuery.sibling(a);
1057 for ( var i = s.n; i < s.length; i++ )
1065 * @test t( "Element Selector", "div", ["main","foo"] );
1066 * @test t( "Element Selector", "body", ["body"] );
1067 * @test t( "Element Selector", "html", ["html"] );
1068 * @test cmpOK( $("*").size(), ">=", 30, "Element Selector" );
1069 * @test t( "Parent Element", "div div", ["foo"] );
1071 * @test t( "ID Selector", "#body", ["body"] );
1072 * @test t( "ID Selector w/ Element", "body#body", ["body"] );
1073 * @test t( "ID Selector w/ Element", "ul#first", [] );
1075 * @test t( "Class Selector", ".blog", ["mark","simon"] );
1076 * @test t( "Class Selector", ".blog.link", ["simon"] );
1077 * @test t( "Class Selector w/ Element", "a.blog", ["mark","simon"] );
1078 * @test t( "Parent Class Selector", "p .blog", ["mark","simon"] );
1080 * @test t( "Comma Support", "a.blog, div", ["mark","simon","main","foo"] );
1081 * @test t( "Comma Support", "a.blog , div", ["mark","simon","main","foo"] );
1082 * @test t( "Comma Support", "a.blog ,div", ["mark","simon","main","foo"] );
1083 * @test t( "Comma Support", "a.blog,div", ["mark","simon","main","foo"] );
1085 * @test t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
1086 * @test t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
1087 * @test t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
1088 * @test t( "Child", "p>a", ["simon1","google","groups","mark","yahoo","simon"] );
1089 * @test t( "Child w/ Class", "p > a.blog", ["mark","simon"] );
1090 * @test t( "All Children", "code > *", ["anchor1","anchor2"] );
1091 * @test t( "All Grandchildren", "p > * > *", ["anchor1","anchor2"] );
1092 * @test t( "Adjacent", "a + a", ["groups"] );
1093 * @test t( "Adjacent", "a +a", ["groups"] );
1094 * @test t( "Adjacent", "a+ a", ["groups"] );
1095 * @test t( "Adjacent", "a+a", ["groups"] );
1096 * @test t( "Adjacent", "p + p", ["ap","en","sap"] );
1097 * @test t( "Comma, Child, and Adjacent", "a + a, code > a", ["groups","anchor1","anchor2"] );
1098 * @test t( "First Child", "p:first-child", ["firstp","sndp"] );
1099 * @test t( "Attribute Exists", "a[@title]", ["google"] );
1100 * @test t( "Attribute Exists", "*[@title]", ["google"] );
1101 * @test t( "Attribute Exists", "[@title]", ["google"] );
1102 * @test t( "Attribute Equals", "a[@rel='bookmark']", ["simon1"] );
1103 * @test t( "Attribute Equals", 'a[@rel="bookmark"]', ["simon1"] );
1104 * @test t( "Attribute Equals", "a[@rel=bookmark]", ["simon1"] );
1105 * @test t( "Multiple Attribute Equals", "input[@type='hidden'],input[@type='radio']", ["hidden1","radio1","radio2"] );
1106 * @test t( "Multiple Attribute Equals", "input[@type=\"hidden\"],input[@type='radio']", ["hidden1","radio1","radio2"] );
1107 * @test t( "Multiple Attribute Equals", "input[@type=hidden],input[@type=radio]", ["hidden1","radio1","radio2"] );
1109 * @test t( "Attribute Begins With", "a[@href ^= 'http://www']", ["google","yahoo"] );
1110 * @test t( "Attribute Ends With", "a[@href $= 'org/']", ["mark"] );
1111 * @test t( "Attribute Contains", "a[@href *= 'google']", ["google","groups"] );
1112 * @test t( "First Child", "p:first-child", ["firstp","sndp"] );
1113 * @test t( "Last Child", "p:last-child", ["sap"] );
1114 * @test t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2"] );
1115 * @test t( "Empty", "ul:empty", ["firstUL"] );
1116 * @test t( "Enabled UI Element", "input:enabled", ["text1","radio1","radio2","check1","check2","hidden1","hidden2"] );
1117 * @test t( "Disabled UI Element", "input:disabled", ["text2"] );
1118 * @test t( "Checked UI Element", "input:checked", ["radio2","check1"] );
1119 * @test t( "Text Contains", "a:contains('Google')", ["google","groups"] );
1120 * @test t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
1121 * @test t( "Element Preceded By", "p ~ div", ["foo"] );
1122 * @test t( "Not", "a.blog:not(.link)", ["mark"] );
1124 * @test cmpOK( jQuery.find("//*").length, ">=", 30, "All Elements (//*)" );
1125 * @test t( "All Div Elements", "//div", ["main","foo"] );
1126 * @test t( "Absolute Path", "/html/body", ["body"] );
1127 * @test t( "Absolute Path w/ *", "/* /body", ["body"] );
1128 * @test t( "Long Absolute Path", "/html/body/dl/div/div/p", ["sndp","en","sap"] );
1129 * @test t( "Absolute and Relative Paths", "/html//div", ["main","foo"] );
1130 * @test t( "All Children, Explicit", "//code/*", ["anchor1","anchor2"] );
1131 * @test t( "All Children, Implicit", "//code/", ["anchor1","anchor2"] );
1132 * @test t( "Attribute Exists", "//a[@title]", ["google"] );
1133 * @test t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );
1134 * @test t( "Parent Axis", "//p/..", ["main","foo"] );
1135 * @test t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","sndp","en","sap"] );
1136 * @test t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","sndp","en","sap"] );
1137 * @test t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] );
1139 * @test t( "nth Element", "p:nth(1)", ["ap"] );
1140 * @test t( "First Element", "p:first", ["firstp"] );
1141 * @test t( "Last Element", "p:last", ["first"] );
1142 * @test t( "Even Elements", "p:even", ["firstp","sndp","sap"] );
1143 * @test t( "Odd Elements", "p:odd", ["ap","en","first"] );
1144 * @test t( "Position Equals", "p:eq(1)", ["ap"] );
1145 * @test t( "Position Greater Than", "p:gt(0)", ["ap","sndp","en","sap","first"] );
1146 * @test t( "Position Less Than", "p:lt(3)", ["firstp","ap","sndp"] );
1147 * @test t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
1148 * @test t( "Is Visible", "input:visible", ["text1","text2","radio1","radio2","check1","check2"] );
1149 * @test t( "Is Hidden", "input:hidden", ["hidden1","hidden2"] );
1154 find: function( t, context ) {
1155 // Make sure that the context is a DOM Element
1156 if ( context && context.nodeType == undefined )
1159 // Set the correct context (if none is provided)
1160 context = context || jQuery.context || document;
1162 if ( t.constructor != String ) return [t];
1164 if ( !t.indexOf("//") ) {
1165 context = context.documentElement;
1166 t = t.substr(2,t.length);
1167 } else if ( !t.indexOf("/") ) {
1168 context = context.documentElement;
1169 t = t.substr(1,t.length);
1170 // FIX Assume the root element is right :(
1171 if ( t.indexOf("/") >= 1 )
1172 t = t.substr(t.indexOf("/"),t.length);
1175 var ret = [context];
1179 while ( t.length > 0 && last != t ) {
1183 t = jQuery.trim(t).replace( /^\/\//i, "" );
1185 var foundToken = false;
1187 for ( var i = 0; i < jQuery.token.length; i += 2 ) {
1188 var re = new RegExp("^(" + jQuery.token[i] + ")");
1192 r = ret = jQuery.map( ret, jQuery.token[i+1] );
1193 t = jQuery.trim( t.replace( re, "" ) );
1198 if ( !foundToken ) {
1199 if ( !t.indexOf(",") || !t.indexOf("|") ) {
1200 if ( ret[0] == context ) ret.shift();
1201 done = jQuery.merge( done, ret );
1202 r = ret = [context];
1203 t = " " + t.substr(1,t.length);
1205 var re2 = /^([#.]?)([a-z0-9\\*_-]*)/i;
1206 var m = re2.exec(t);
1208 if ( m[1] == "#" ) {
1209 // Ummm, should make this work in all XML docs
1210 var oid = document.getElementById(m[2]);
1211 r = ret = oid ? [oid] : [];
1212 t = t.replace( re2, "" );
1214 if ( !m[2] || m[1] == "." ) m[2] = "*";
1216 for ( var i = 0; i < ret.length; i++ )
1217 r = jQuery.merge( r,
1219 jQuery.getAll(ret[i]) :
1220 ret[i].getElementsByTagName(m[2])
1227 var val = jQuery.filter(t,r);
1229 t = jQuery.trim(val.t);
1233 if ( ret && ret[0] == context ) ret.shift();
1234 done = jQuery.merge( done, ret );
1239 getAll: function(o,r) {
1241 var s = o.childNodes;
1242 for ( var i = 0; i < s.length; i++ )
1243 if ( s[i].nodeType == 1 ) {
1245 jQuery.getAll( s[i], r );
1250 attr: function(o,a,v){
1251 if ( a && a.constructor == String ) {
1254 "class": "className",
1258 a = (fix[a] && fix[a].replace && fix[a] || a)
1259 .replace(/-([a-z])/ig,function(z,b){
1260 return b.toUpperCase();
1263 if ( v != undefined ) {
1265 if ( o.setAttribute && a != "disabled" )
1266 o.setAttribute(a,v);
1269 return o[a] || o.getAttribute && o.getAttribute(a) || "";
1274 // The regular expressions that power the parsing engine
1276 // Match: [@value='test'], [@foo]
1277 [ "\\[ *(@)S *([!*$^=]*) *Q\\]", 1 ],
1279 // Match: [div], [div p]
1282 // Match: :contains('foo')
1283 [ "(:)S\\(Q\\)", 0 ],
1285 // Match: :even, :last-chlid
1289 filter: function(t,r,not) {
1290 // Figure out if we're doing regular, or inverse, filtering
1291 var g = not !== false ? jQuery.grep :
1292 function(a,f) {return jQuery.grep(a,f,true);};
1294 while ( t && /^[a-z[({<*:.#]/i.test(t) ) {
1296 var p = jQuery.parse;
1298 for ( var i = 0; i < p.length; i++ ) {
1299 var re = new RegExp( "^" + p[i][0]
1301 // Look for a string-like sequence
1302 .replace( 'S', "([a-z*_-][a-z0-9_-]*)" )
1304 // Look for something (optionally) enclosed with quotes
1305 .replace( 'Q', " *'?\"?([^'\"]*?)'?\"? *" ), "i" );
1307 var m = re.exec( t );
1310 // Re-organize the match
1312 m = ["", m[1], m[3], m[2], m[4]];
1314 // Remove what we just matched
1315 t = t.replace( re, "" );
1321 // :not() is a special case that can be optomized by
1322 // keeping it out of the expression list
1323 if ( m[1] == ":" && m[2] == "not" )
1324 r = jQuery.filter(m[3],r,false).r;
1326 // Otherwise, find the expression to execute
1328 var f = jQuery.expr[m[1]];
1329 if ( f.constructor != String )
1330 f = jQuery.expr[m[1]][m[2]];
1332 // Build a custom macro to enclose it
1333 eval("f = function(a,i){" +
1334 ( m[1] == "@" ? "z=jQuery.attr(a,m[3]);" : "" ) +
1335 "return " + f + "}");
1337 // Execute it against the current filter
1342 // Return an array of filtered elements (r)
1343 // and the modified expression string (t)
1344 return { r: r, t: t };
1348 * Remove the whitespace from the beginning and end of a string.
1353 * @param String str The string to trim.
1356 return t.replace(/^\s+|\s+$/g, "");
1360 * All ancestors of a given element.
1363 * @name jQuery.parents
1364 * @type Array<Element>
1365 * @param Element elem The element to find the ancestors of.
1367 parents: function(a){
1369 var c = a.parentNode;
1370 while ( c && c != document ) {
1378 * All elements on a specified axis.
1381 * @name jQuery.sibling
1383 * @param Element elem The element to find all the siblings of (including itself).
1385 sibling: function(a,n) {
1387 var tmp = a.parentNode.childNodes;
1388 for ( var i = 0; i < tmp.length; i++ ) {
1389 if ( tmp[i].nodeType == 1 )
1390 type.push( tmp[i] );
1392 type.n = type.length - 1;
1394 type.last = type.n == type.length - 1;
1396 n == "even" && type.n % 2 == 0 ||
1397 n == "odd" && type.n % 2 ||
1399 type.prev = type[type.n - 1];
1400 type.next = type[type.n + 1];
1405 * Merge two arrays together, removing all duplicates.
1408 * @name jQuery.merge
1410 * @param Array a The first array to merge.
1411 * @param Array b The second array to merge.
1413 merge: function(a,b) {
1416 // Move b over to the new array (this helps to avoid
1417 // StaticNodeList instances)
1418 for ( var k = 0; k < a.length; k++ )
1421 // Now check for duplicates between a and b and only
1422 // add the unique items
1423 for ( var i = 0; i < b.length; i++ ) {
1426 // The collision-checking process
1427 for ( var j = 0; j < a.length; j++ )
1431 // If the item is unique, add it
1440 * Remove items that aren't matched in an array. The function passed
1441 * in to this method will be passed two arguments: 'a' (which is the
1442 * array item) and 'i' (which is the index of the item in the array).
1447 * @param Array array The Array to find items in.
1448 * @param Function fn The function to process each item against.
1449 * @param Boolean inv Invert the selection - select the opposite of the function.
1451 grep: function(a,f,s) {
1452 // If a string is passed in for the function, make a function
1453 // for it (a handy shortcut)
1454 if ( f.constructor == String )
1455 f = new Function("a","i","return " + f);
1459 // Go through the array, only saving the items
1460 // that pass the validator function
1461 for ( var i = 0; i < a.length; i++ )
1462 if ( !s && f(a[i],i) || s && !f(a[i],i) )
1469 * Translate all items in array to another array of items. The translation function
1470 * that is provided to this method is passed one argument: 'a' (the item to be
1471 * translated). If an array is returned, that array is mapped out and merged into
1472 * the full array. Additionally, returning 'null' or 'undefined' will delete the item
1473 * from the array. Both of these changes imply that the size of the array may not
1474 * be the same size upon completion, as it was when it started.
1479 * @param Array array The Array to translate.
1480 * @param Function fn The function to process each item against.
1482 map: function(a,f) {
1483 // If a string is passed in for the function, make a function
1484 // for it (a handy shortcut)
1485 if ( f.constructor == String )
1486 f = new Function("a","return " + f);
1490 // Go through the array, translating each of the items to their
1491 // new value (or values).
1492 for ( var i = 0; i < a.length; i++ ) {
1494 if ( t !== null && t != undefined ) {
1495 if ( t.constructor != Array ) t = [t];
1496 r = jQuery.merge( r, t );
1503 * A number of helper functions used for managing events.
1504 * Many of the ideas behind this code orignated from Dean Edwards' addEvent library.
1508 // Bind an event to an element
1509 // Original by Dean Edwards
1510 add: function(element, type, handler) {
1511 // For whatever reason, IE has trouble passing the window object
1512 // around, causing it to be cloned in the process
1513 if ( jQuery.browser.msie && element.setInterval != undefined )
1516 // Make sure that the function being executed has a unique ID
1517 if ( !handler.guid )
1518 handler.guid = this.guid++;
1520 // Init the element's event structure
1521 if (!element.events)
1522 element.events = {};
1524 // Get the current list of functions bound to this event
1525 var handlers = element.events[type];
1527 // If it hasn't been initialized yet
1529 // Init the event handler queue
1530 handlers = element.events[type] = {};
1532 // Remember an existing handler, if it's already there
1533 if (element["on" + type])
1534 handlers[0] = element["on" + type];
1537 // Add the function to the element's handler list
1538 handlers[handler.guid] = handler;
1540 // And bind the global event handler to the element
1541 element["on" + type] = this.handle;
1543 // Remember the function in a global list (for triggering)
1544 if (!this.global[type])
1545 this.global[type] = [];
1546 this.global[type].push( element );
1552 // Detach an event or set of events from an element
1553 remove: function(element, type, handler) {
1555 if (type && element.events[type])
1557 delete element.events[type][handler.guid];
1559 for ( var i in element.events[type] )
1560 delete element.events[type][i];
1562 for ( var j in element.events )
1563 this.remove( element, j );
1566 trigger: function(type,data,element) {
1567 // Touch up the incoming data
1570 // Handle a global trigger
1572 var g = this.global[type];
1574 for ( var i = 0; i < g.length; i++ )
1575 this.trigger( type, data, g[i] );
1577 // Handle triggering a single element
1578 } else if ( element["on" + type] ) {
1579 // Pass along a fake event
1580 data.unshift( this.fix({ type: type, target: element }) );
1582 // Trigger the event
1583 element["on" + type].apply( element, data );
1587 handle: function(event) {
1588 if ( typeof jQuery == "undefined" ) return;
1590 event = event || jQuery.event.fix( window.event );
1592 // If no correct event was found, fail
1593 if ( !event ) return;
1595 var returnValue = true;
1597 var c = this.events[event.type];
1599 for ( var j in c ) {
1600 if ( c[j].apply( this, [event] ) === false ) {
1601 event.preventDefault();
1602 event.stopPropagation();
1603 returnValue = false;
1610 fix: function(event) {
1612 event.preventDefault = function() {
1613 this.returnValue = false;
1616 event.stopPropagation = function() {
1617 this.cancelBubble = true;
1628 var b = navigator.userAgent.toLowerCase();
1630 // Figure out what browser is being used
1632 safari: /webkit/.test(b),
1633 opera: /opera/.test(b),
1634 msie: /msie/.test(b) && !/opera/.test(b),
1635 mozilla: /mozilla/.test(b) && !/compatible/.test(b)
1638 // Check to see if the W3C box model is being used
1639 jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat";
1645 * Append all of the matched elements to another, specified, set of elements.
1646 * This operation is, essentially, the reverse of doing a regular
1647 * $(A).append(B), in that instead of appending B to A, you're appending
1650 * @example $("p").appendTo("#foo");
1651 * @before <p>I would like to say: </p><div id="foo"></div>
1652 * @result <div id="foo"><p>I would like to say: </p></div>
1656 * @param String expr A jQuery expression of elements to match.
1657 * @cat DOM/Manipulation
1662 * Prepend all of the matched elements to another, specified, set of elements.
1663 * This operation is, essentially, the reverse of doing a regular
1664 * $(A).prepend(B), in that instead of prepending B to A, you're prepending
1667 * @example $("p").prependTo("#foo");
1668 * @before <p>I would like to say: </p><div id="foo"><b>Hello</b></div>
1669 * @result <div id="foo"><p>I would like to say: </p><b>Hello</b></div>
1673 * @param String expr A jQuery expression of elements to match.
1674 * @cat DOM/Manipulation
1676 prependTo: "prepend",
1679 * Insert all of the matched elements before another, specified, set of elements.
1680 * This operation is, essentially, the reverse of doing a regular
1681 * $(A).before(B), in that instead of inserting B before A, you're inserting
1684 * @example $("p").insertBefore("#foo");
1685 * @before <div id="foo">Hello</div><p>I would like to say: </p>
1686 * @result <p>I would like to say: </p><div id="foo">Hello</div>
1688 * @name insertBefore
1690 * @param String expr A jQuery expression of elements to match.
1691 * @cat DOM/Manipulation
1693 insertBefore: "before",
1696 * Insert all of the matched elements after another, specified, set of elements.
1697 * This operation is, essentially, the reverse of doing a regular
1698 * $(A).after(B), in that instead of inserting B after A, you're inserting
1701 * @example $("p").insertAfter("#foo");
1702 * @before <p>I would like to say: </p><div id="foo">Hello</div>
1703 * @result <div id="foo">Hello</div><p>I would like to say: </p>
1707 * @param String expr A jQuery expression of elements to match.
1708 * @cat DOM/Manipulation
1710 insertAfter: "after"
1714 * Get the current CSS width of the first matched element.
1716 * @example $("p").width();
1717 * @before <p>This is just a test.</p>
1726 * Set the CSS width of every matched element. Be sure to include
1727 * the "px" (or other unit of measurement) after the number that you
1728 * specify, otherwise you might get strange results.
1730 * @example $("p").width("20px");
1731 * @before <p>This is just a test.</p>
1732 * @result <p style="width:20px;">This is just a test.</p>
1736 * @param String val Set the CSS property to the specified value.
1741 * Get the current CSS height of the first matched element.
1743 * @example $("p").height();
1744 * @before <p>This is just a test.</p>
1753 * Set the CSS height of every matched element. Be sure to include
1754 * the "px" (or other unit of measurement) after the number that you
1755 * specify, otherwise you might get strange results.
1757 * @example $("p").height("20px");
1758 * @before <p>This is just a test.</p>
1759 * @result <p style="height:20px;">This is just a test.</p>
1763 * @param String val Set the CSS property to the specified value.
1768 * Get the current CSS top of the first matched element.
1770 * @example $("p").top();
1771 * @before <p>This is just a test.</p>
1780 * Set the CSS top of every matched element. Be sure to include
1781 * the "px" (or other unit of measurement) after the number that you
1782 * specify, otherwise you might get strange results.
1784 * @example $("p").top("20px");
1785 * @before <p>This is just a test.</p>
1786 * @result <p style="top:20px;">This is just a test.</p>
1790 * @param String val Set the CSS property to the specified value.
1795 * Get the current CSS left of the first matched element.
1797 * @example $("p").left();
1798 * @before <p>This is just a test.</p>
1807 * Set the CSS left of every matched element. Be sure to include
1808 * the "px" (or other unit of measurement) after the number that you
1809 * specify, otherwise you might get strange results.
1811 * @example $("p").left("20px");
1812 * @before <p>This is just a test.</p>
1813 * @result <p style="left:20px;">This is just a test.</p>
1817 * @param String val Set the CSS property to the specified value.
1822 * Get the current CSS position of the first matched element.
1824 * @example $("p").position();
1825 * @before <p>This is just a test.</p>
1834 * Set the CSS position of every matched element.
1836 * @example $("p").position("relative");
1837 * @before <p>This is just a test.</p>
1838 * @result <p style="position:relative;">This is just a test.</p>
1842 * @param String val Set the CSS property to the specified value.
1847 * Get the current CSS float of the first matched element.
1849 * @example $("p").float();
1850 * @before <p>This is just a test.</p>
1859 * Set the CSS float of every matched element.
1861 * @example $("p").float("left");
1862 * @before <p>This is just a test.</p>
1863 * @result <p style="float:left;">This is just a test.</p>
1867 * @param String val Set the CSS property to the specified value.
1872 * Get the current CSS overflow of the first matched element.
1874 * @example $("p").overflow();
1875 * @before <p>This is just a test.</p>
1884 * Set the CSS overflow of every matched element.
1886 * @example $("p").overflow("auto");
1887 * @before <p>This is just a test.</p>
1888 * @result <p style="overflow:auto;">This is just a test.</p>
1892 * @param String val Set the CSS property to the specified value.
1897 * Get the current CSS color of the first matched element.
1899 * @example $("p").color();
1900 * @before <p>This is just a test.</p>
1909 * Set the CSS color of every matched element.
1911 * @example $("p").color("blue");
1912 * @before <p>This is just a test.</p>
1913 * @result <p style="color:blue;">This is just a test.</p>
1917 * @param String val Set the CSS property to the specified value.
1922 * Get the current CSS background of the first matched element.
1924 * @example $("p").background();
1925 * @before <p>This is just a test.</p>
1934 * Set the CSS background of every matched element.
1936 * @example $("p").background("blue");
1937 * @before <p>This is just a test.</p>
1938 * @result <p style="background:blue;">This is just a test.</p>
1942 * @param String val Set the CSS property to the specified value.
1946 css: "width,height,top,left,position,float,overflow,color,background".split(","),
1948 filter: [ "eq", "lt", "gt", "contains" ],
1952 * Get the current value of the first matched element.
1954 * @example $("input").val();
1955 * @before <input type="text" value="some text"/>
1956 * @result "some text"
1960 * @cat DOM/Attributes
1964 * Set the value of every matched element.
1966 * @example $("input").value("test");
1967 * @before <input type="text" value="some text"/>
1968 * @result <input type="text" value="test"/>
1972 * @param String val Set the property to the specified value.
1973 * @cat DOM/Attributes
1978 * Get the html contents of the first matched element.
1980 * @example $("div").html();
1981 * @before <div><input/></div>
1986 * @cat DOM/Attributes
1990 * Set the html contents of every matched element.
1992 * @example $("div").html("<b>new stuff</b>");
1993 * @before <div><input/></div>
1994 * @result <div><b>new stuff</b></div>
1996 * @test var div = $("div");
1997 * div.html("<b>test</b>");
1999 * for ( var i = 0; i < div.size(); i++ ) {
2000 * if ( div.get(i).childNodes.length == 0 ) pass = false;
2002 * ok( pass, "Set HTML" );
2006 * @param String val Set the html contents to the specified value.
2007 * @cat DOM/Attributes
2012 * Get the current id of the first matched element.
2014 * @example $("input").id();
2015 * @before <input type="text" id="test" value="some text"/>
2020 * @cat DOM/Attributes
2024 * Set the id of every matched element.
2026 * @example $("input").id("newid");
2027 * @before <input type="text" id="test" value="some text"/>
2028 * @result <input type="text" id="newid" value="some text"/>
2032 * @param String val Set the property to the specified value.
2033 * @cat DOM/Attributes
2038 * Get the current title of the first matched element.
2040 * @example $("img").title();
2041 * @before <img src="test.jpg" title="my image"/>
2042 * @result "my image"
2046 * @cat DOM/Attributes
2050 * Set the title of every matched element.
2052 * @example $("img").title("new title");
2053 * @before <img src="test.jpg" title="my image"/>
2054 * @result <img src="test.jpg" title="new image"/>
2058 * @param String val Set the property to the specified value.
2059 * @cat DOM/Attributes
2064 * Get the current name of the first matched element.
2066 * @example $("input").name();
2067 * @before <input type="text" name="username"/>
2068 * @result "username"
2072 * @cat DOM/Attributes
2076 * Set the name of every matched element.
2078 * @example $("input").name("user");
2079 * @before <input type="text" name="username"/>
2080 * @result <input type="text" name="user"/>
2084 * @param String val Set the property to the specified value.
2085 * @cat DOM/Attributes
2090 * Get the current href of the first matched element.
2092 * @example $("a").href();
2093 * @before <a href="test.html">my link</a>
2094 * @result "test.html"
2098 * @cat DOM/Attributes
2102 * Set the href of every matched element.
2104 * @example $("a").href("test2.html");
2105 * @before <a href="test.html">my link</a>
2106 * @result <a href="test2.html">my link</a>
2110 * @param String val Set the property to the specified value.
2111 * @cat DOM/Attributes
2116 * Get the current src of the first matched element.
2118 * @example $("img").src();
2119 * @before <img src="test.jpg" title="my image"/>
2120 * @result "test.jpg"
2124 * @cat DOM/Attributes
2128 * Set the src of every matched element.
2130 * @example $("img").src("test2.jpg");
2131 * @before <img src="test.jpg" title="my image"/>
2132 * @result <img src="test2.jpg" title="my image"/>
2136 * @param String val Set the property to the specified value.
2137 * @cat DOM/Attributes
2142 * Get the current rel of the first matched element.
2144 * @example $("a").rel();
2145 * @before <a href="test.html" rel="nofollow">my link</a>
2146 * @result "nofollow"
2150 * @cat DOM/Attributes
2154 * Set the rel of every matched element.
2156 * @example $("a").rel("nofollow");
2157 * @before <a href="test.html">my link</a>
2158 * @result <a href="test.html" rel="nofollow">my link</a>
2162 * @param String val Set the property to the specified value.
2163 * @cat DOM/Attributes
2170 * Get a set of elements containing the unique parents of the matched
2173 * @example $("p").parent()
2174 * @before <div><p>Hello</p><p>Hello</p></div>
2175 * @result [ <div><p>Hello</p><p>Hello</p></div> ]
2179 * @cat DOM/Traversing
2183 * Get a set of elements containing the unique parents of the matched
2184 * set of elements, and filtered by an expression.
2186 * @example $("p").parent(".selected")
2187 * @before <div><p>Hello</p></div><div class="selected"><p>Hello Again</p></div>
2188 * @result [ <div class="selected"><p>Hello Again</p></div> ]
2192 * @param String expr An expression to filter the parents with
2193 * @cat DOM/Traversing
2195 parent: "a.parentNode",
2198 * Get a set of elements containing the unique ancestors of the matched
2201 * @example $("span").ancestors()
2202 * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2203 * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2207 * @cat DOM/Traversing
2211 * Get a set of elements containing the unique ancestors of the matched
2212 * set of elements, and filtered by an expression.
2214 * @example $("span").ancestors("p")
2215 * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2216 * @result [ <p><span>Hello</span></p> ]
2220 * @param String expr An expression to filter the ancestors with
2221 * @cat DOM/Traversing
2223 ancestors: jQuery.parents,
2226 * Get a set of elements containing the unique ancestors of the matched
2229 * @example $("span").ancestors()
2230 * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2231 * @result [ <body>...</body>, <div>...</div>, <p><span>Hello</span></p> ]
2235 * @cat DOM/Traversing
2239 * Get a set of elements containing the unique ancestors of the matched
2240 * set of elements, and filtered by an expression.
2242 * @example $("span").ancestors("p")
2243 * @before <html><body><div><p><span>Hello</span></p><span>Hello Again</span></div></body></html>
2244 * @result [ <p><span>Hello</span></p> ]
2248 * @param String expr An expression to filter the ancestors with
2249 * @cat DOM/Traversing
2251 parents: jQuery.parents,
2254 * Get a set of elements containing the unique next siblings of each of the
2255 * matched set of elements.
2257 * It only returns the very next sibling, not all next siblings.
2259 * @example $("p").next()
2260 * @before <p>Hello</p><p>Hello Again</p><div><span>And Again</span></div>
2261 * @result [ <p>Hello Again</p>, <div><span>And Again</span></div> ]
2265 * @cat DOM/Traversing
2269 * Get a set of elements containing the unique next siblings of each of the
2270 * matched set of elements, and filtered by an expression.
2272 * It only returns the very next sibling, not all next siblings.
2274 * @example $("p").next(".selected")
2275 * @before <p>Hello</p><p class="selected">Hello Again</p><div><span>And Again</span></div>
2276 * @result [ <p class="selected">Hello Again</p> ]
2280 * @param String expr An expression to filter the next Elements with
2281 * @cat DOM/Traversing
2283 next: "jQuery.sibling(a).next",
2286 * Get a set of elements containing the unique previous siblings of each of the
2287 * matched set of elements.
2289 * It only returns the immediately previous sibling, not all previous siblings.
2291 * @example $("p").previous()
2292 * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2293 * @result [ <div><span>Hello Again</span></div> ]
2297 * @cat DOM/Traversing
2301 * Get a set of elements containing the unique previous siblings of each of the
2302 * matched set of elements, and filtered by an expression.
2304 * It only returns the immediately previous sibling, not all previous siblings.
2306 * @example $("p").previous(".selected")
2307 * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2308 * @result [ <div><span>Hello</span></div> ]
2312 * @param String expr An expression to filter the previous Elements with
2313 * @cat DOM/Traversing
2315 prev: "jQuery.sibling(a).prev",
2318 * Get a set of elements containing all of the unique siblings of each of the
2319 * matched set of elements.
2321 * @example $("div").siblings()
2322 * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2323 * @result [ <p>Hello</p>, <p>And Again</p> ]
2327 * @cat DOM/Traversing
2331 * Get a set of elements containing all of the unique siblings of each of the
2332 * matched set of elements, and filtered by an expression.
2334 * @example $("div").siblings(".selected")
2335 * @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
2336 * @result [ <p class="selected">Hello Again</p> ]
2340 * @param String expr An expression to filter the sibling Elements with
2341 * @cat DOM/Traversing
2343 siblings: jQuery.sibling,
2347 * Get a set of elements containing all of the unique children of each of the
2348 * matched set of elements.
2350 * @example $("div").children()
2351 * @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
2352 * @result [ <span>Hello Again</span> ]
2356 * @cat DOM/Traversing
2360 * Get a set of elements containing all of the unique children of each of the
2361 * matched set of elements, and filtered by an expression.
2363 * @example $("div").children(".selected")
2364 * @before <div><span>Hello</span><p class="selected">Hello Again</p><p>And Again</p></div>
2365 * @result [ <p class="selected">Hello Again</p> ]
2369 * @param String expr An expression to filter the child Elements with
2370 * @cat DOM/Traversing
2372 children: "a.childNodes"
2377 removeAttr: function( key ) {
2378 this.removeAttribute( key );
2382 * Displays each of the set of matched elements if they are hidden.
2384 * @example $("p").show()
2385 * @before <p style="display: none">Hello</p>
2386 * @result [ <p style="display: block">Hello</p> ]
2388 * @test var pass = true, div = $("div");
2389 * div.show().each(function(){
2390 * if ( this.style.display == "none" ) pass = false;
2392 * ok( pass, "Show" );
2399 this.style.display = this.oldblock ? this.oldblock : "";
2400 if ( jQuery.css(this,"display") == "none" )
2401 this.style.display = "block";
2405 * Hides each of the set of matched elements if they are shown.
2407 * @example $("p").hide()
2408 * @before <p>Hello</p>
2409 * @result [ <p style="display: none">Hello</p> ]
2411 * var pass = true, div = $("div");
2412 * div.hide().each(function(){
2413 * if ( this.style.display != "none" ) pass = false;
2415 * ok( pass, "Hide" );
2422 this.oldblock = this.oldblock || jQuery.css(this,"display");
2423 if ( this.oldblock == "none" )
2424 this.oldblock = "block";
2425 this.style.display = "none";
2429 * Toggles each of the set of matched elements. If they are shown,
2430 * toggle makes them hidden. If they are hidden, toggle
2433 * @example $("p").toggle()
2434 * @before <p>Hello</p><p style="display: none">Hello Again</p>
2435 * @result [ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]
2441 _toggle: function(){
2442 var d = jQuery.css(this,"display");
2443 $(this)[ !d || d == "none" ? "show" : "hide" ]();
2447 * Adds the specified class to each of the set of matched elements.
2449 * @example $("p").addClass("selected")
2450 * @before <p>Hello</p>
2451 * @result [ <p class="selected">Hello</p> ]
2453 * @test var div = $("div");
2454 * div.addClass("test");
2456 * for ( var i = 0; i < div.size(); i++ ) {
2457 * if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
2459 * ok( pass, "Add Class" );
2463 * @param String class A CSS class to add to the elements
2466 addClass: function(c){
2467 jQuery.className.add(this,c);
2471 * Removes the specified class from the set of matched elements.
2473 * @example $("p").removeClass("selected")
2474 * @before <p class="selected">Hello</p>
2475 * @result [ <p>Hello</p> ]
2477 * @test var div = $("div").addClass("test");
2478 * div.removeClass("test");
2480 * for ( var i = 0; i < div.size(); i++ ) {
2481 * if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
2483 * ok( pass, "Remove Class" );
2487 * @param String class A CSS class to remove from the elements
2490 removeClass: function(c){
2491 jQuery.className.remove(this,c);
2495 * Adds the specified class if it is present, removes it if it is
2498 * @example $("p").toggleClass("selected")
2499 * @before <p>Hello</p><p class="selected">Hello Again</p>
2500 * @result [ <p class="selected">Hello</p>, <p>Hello Again</p> ]
2504 * @param String class A CSS class with which to toggle the elements
2507 toggleClass: function( c ){
2508 jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this,c);
2512 * Removes all matched elements from the DOM. This does NOT remove them from the
2513 * jQuery object, allowing you to use the matched elements further.
2515 * @example $("p").remove();
2516 * @before <p>Hello</p> how are <p>you?</p>
2521 * @cat DOM/Manipulation
2525 * Removes only elements (out of the list of matched elements) that match
2526 * the specified jQuery expression. This does NOT remove them from the
2527 * jQuery object, allowing you to use the matched elements further.
2529 * @example $("p").remove(".hello");
2530 * @before <p class="hello">Hello</p> how are <p>you?</p>
2531 * @result how are <p>you?</p>
2535 * @param String expr A jQuery expression to filter elements by.
2536 * @cat DOM/Manipulation
2538 remove: function(a){
2539 if ( !a || jQuery.filter( [this], a ).r )
2540 this.parentNode.removeChild( this );
2544 * Removes all child nodes from the set of matched elements.
2546 * @example $("p").empty()
2547 * @before <p>Hello, <span>Person</span> <a href="#">and person</a></p>
2548 * @result [ <p></p> ]
2552 * @cat DOM/Manipulation
2555 while ( this.firstChild )
2556 this.removeChild( this.firstChild );
2560 * Binds a particular event (like click) to a each of a set of match elements.
2562 * @example $("p").bind( "click", function() { alert("Hello"); } )
2563 * @before <p>Hello</p>
2564 * @result [ <p>Hello</p> ]
2566 * Cancel a default action and prevent it from bubbling by returning false
2567 * from your function.
2569 * @example $("form").bind( "submit", function() { return false; } )
2571 * Cancel a default action by using the preventDefault method.
2573 * @example $("form").bind( "submit", function() { e.preventDefault(); } )
2575 * Stop an event from bubbling by using the stopPropogation method.
2577 * @example $("form").bind( "submit", function() { e.stopPropogation(); } )
2581 * @param String type An event type
2582 * @param Function fn A function to bind to the event on each of the set of matched elements
2585 bind: function( type, fn ) {
2586 if ( fn.constructor == String )
2587 fn = new Function("e", ( !fn.indexOf(".") ? "$(this)" : "return " ) + fn);
2588 jQuery.event.add( this, type, fn );
2592 * The opposite of bind, removes a bound event from each of the matched
2593 * elements. You must pass the identical function that was used in the original
2596 * @example $("p").unbind( "click", function() { alert("Hello"); } )
2597 * @before <p onclick="alert('Hello');">Hello</p>
2598 * @result [ <p>Hello</p> ]
2602 * @param String type An event type
2603 * @param Function fn A function to unbind from the event on each of the set of matched elements
2608 * Removes all bound events of a particular type from each of the matched
2611 * @example $("p").unbind( "click" )
2612 * @before <p onclick="alert('Hello');">Hello</p>
2613 * @result [ <p>Hello</p> ]
2617 * @param String type An event type
2622 * Removes all bound events from each of the matched elements.
2624 * @example $("p").unbind()
2625 * @before <p onclick="alert('Hello');">Hello</p>
2626 * @result [ <p>Hello</p> ]
2632 unbind: function( type, fn ) {
2633 jQuery.event.remove( this, type, fn );
2637 * Trigger a type of event on every matched element.
2639 * @example $("p").trigger("click")
2640 * @before <p click="alert('hello')">Hello</p>
2641 * @result alert('hello')
2645 * @param String type An event type to trigger.
2648 trigger: function( type, data ) {
2649 jQuery.event.trigger( type, data, this );