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