jquery.js
上传用户:linhai
上传日期:2022-07-24
资源大小:184k
文件大小:178k
源码类别:

企业管理

开发平台:

Others

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