Added a change that triples the speed of all uses of $(...). For example $(DOMElement...
[jquery.git] / src / core.js
1 /*
2  * jQuery @VERSION - New Wave Javascript
3  *
4  * Copyright (c) 2007 John Resig (jquery.com)
5  * Dual licensed under the MIT (MIT-LICENSE.txt)
6  * and GPL (GPL-LICENSE.txt) licenses.
7  *
8  * $Date$
9  * $Rev$
10  */
11
12 // Map over jQuery in case of overwrite
13 if ( window.jQuery )
14         var _jQuery = window.jQuery;
15
16 var jQuery = window.jQuery = function( selector, context ) {
17         // The jQuery object is actually just the init constructor 'enhanced'
18         return new jQuery.prototype.init( selector, context );
19 };
20
21 // Map over the $ in case of overwrite
22 if ( window.$ )
23         var _$ = window.$;
24         
25 // Map the jQuery namespace to the '$' one
26 window.$ = jQuery;
27
28 // A simple way to check for HTML strings or ID strings
29 // (both of which we optimize for)
30 var quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;
31
32 jQuery.fn = jQuery.prototype = {
33         init: function( selector, context ) {
34                 // Make sure that a selection was provided
35                 selector = selector || document;
36
37                 // Handle $(DOMElement)
38                 if ( selector.nodeType ) {
39                         this[0] = selector;
40                         this.length = 1;
41                         return this;
42
43                 // Handle HTML strings
44                 } else if ( typeof selector == "string" ) {
45                         // Are we dealing with HTML string or an ID?
46                         var match = quickExpr.exec( selector );
47
48                         // Verify a match, and that no context was specified for #id
49                         if ( match && (match[1] || !context) ) {
50
51                                 // HANDLE: $(html) -> $(array)
52                                 if ( match[1] )
53                                         selector = jQuery.clean( [ match[1] ], context );
54
55                                 // HANDLE: $("#id")
56                                 else {
57                                         var elem = document.getElementById( match[3] );
58
59                                         // Make sure an element was located
60                                         if ( elem )
61                                                 // Handle the case where IE and Opera return items
62                                                 // by name instead of ID
63                                                 if ( elem.id != match[3] )
64                                                         return jQuery().find( selector );
65
66                                                 // Otherwise, we inject the element directly into the jQuery object
67                                                 else {
68                                                         this[0] = elem;
69                                                         this.length = 1;
70                                                         return this;
71                                                 }
72
73                                         else
74                                                 selector = [];
75                                 }
76
77                         // HANDLE: $(expr, [context])
78                         // (which is just equivalent to: $(content).find(expr)
79                         } else
80                                 return new jQuery( context ).find( selector );
81
82                 // HANDLE: $(function)
83                 // Shortcut for document ready
84                 } else if ( jQuery.isFunction( selector ) )
85                         return new jQuery( document )[ jQuery.fn.ready ? "ready" : "load" ]( selector );
86
87                 return this.setArray(
88                         // HANDLE: $(array)
89                         selector.constructor == Array && selector ||
90
91                         // HANDLE: $(arraylike)
92                         // Watch for when an array-like object, contains DOM nodes, is passed in as the selector
93                         (selector.jquery || selector.length && selector != window && !selector.nodeType && selector[0] != undefined && selector[0].nodeType) && jQuery.makeArray( selector ) ||
94
95                         // HANDLE: $(*)
96                         [ selector ] );
97         },
98         
99         // The current version of jQuery being used
100         jquery: "@VERSION",
101
102         // The number of elements contained in the matched element set
103         size: function() {
104                 return this.length;
105         },
106         
107         // The number of elements contained in the matched element set
108         length: 0,
109
110         // Get the Nth element in the matched element set OR
111         // Get the whole matched element set as a clean array
112         get: function( num ) {
113                 return num == undefined ?
114
115                         // Return a 'clean' array
116                         jQuery.makeArray( this ) :
117
118                         // Return just the object
119                         this[ num ];
120         },
121         
122         // Take an array of elements and push it onto the stack
123         // (returning the new matched element set)
124         pushStack: function( elems ) {
125                 // Build a new jQuery matched element set
126                 var ret = jQuery( elems );
127
128                 // Add the old object onto the stack (as a reference)
129                 ret.prevObject = this;
130
131                 // Return the newly-formed element set
132                 return ret;
133         },
134         
135         // Force the current matched set of elements to become
136         // the specified array of elements (destroying the stack in the process)
137         // You should use pushStack() in order to do this, but maintain the stack
138         setArray: function( elems ) {
139                 // Resetting the length to 0, then using the native Array push
140                 // is a super-fast way to populate an object with array-like properties
141                 this.length = 0;
142                 Array.prototype.push.apply( this, elems );
143                 
144                 return this;
145         },
146
147         // Execute a callback for every element in the matched set.
148         // (You can seed the arguments with an array of args, but this is
149         // only used internally.)
150         each: function( callback, args ) {
151                 return jQuery.each( this, callback, args );
152         },
153
154         // Determine the position of an element within 
155         // the matched set of elements
156         index: function( elem ) {
157                 var ret = -1;
158
159                 // Locate the position of the desired element
160                 this.each(function(i){
161                         if ( this == elem )
162                                 ret = i;
163                 });
164
165                 return ret;
166         },
167
168         attr: function( name, value, type ) {
169                 var options = name;
170                 
171                 // Look for the case where we're accessing a style value
172                 if ( name.constructor == String )
173                         if ( value == undefined )
174                                 return this.length && jQuery[ type || "attr" ]( this[0], name ) || undefined;
175
176                         else {
177                                 options = {};
178                                 options[ name ] = value;
179                         }
180                 
181                 // Check to see if we're setting style values
182                 return this.each(function(i){
183                         // Set all the styles
184                         for ( name in options )
185                                 jQuery.attr(
186                                         type ?
187                                                 this.style :
188                                                 this,
189                                         name, jQuery.prop( this, options[ name ], type, i, name )
190                                 );
191                 });
192         },
193
194         css: function( key, value ) {
195                 // ignore negative width and height values
196                 if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 )
197                         value = undefined;
198                 return this.attr( key, value, "curCSS" );
199         },
200
201         text: function( text ) {
202                 if ( typeof text != "object" && text != null )
203                         return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );
204
205                 var ret = "";
206
207                 jQuery.each( text || this, function(){
208                         jQuery.each( this.childNodes, function(){
209                                 if ( this.nodeType != 8 )
210                                         ret += this.nodeType != 1 ?
211                                                 this.nodeValue :
212                                                 jQuery.fn.text( [ this ] );
213                         });
214                 });
215
216                 return ret;
217         },
218
219         wrapAll: function( html ) {
220                 if ( this[0] )
221                         // The elements to wrap the target around
222                         jQuery( html, this[0].ownerDocument )
223                                 .clone()
224                                 .insertBefore( this[0] )
225                                 .map(function(){
226                                         var elem = this;
227
228                                         while ( elem.firstChild )
229                                                 elem = elem.firstChild;
230
231                                         return elem;
232                                 })
233                                 .append(this);
234
235                 return this;
236         },
237
238         wrapInner: function( html ) {
239                 return this.each(function(){
240                         jQuery( this ).contents().wrapAll( html );
241                 });
242         },
243
244         wrap: function( html ) {
245                 return this.each(function(){
246                         jQuery( this ).wrapAll( html );
247                 });
248         },
249
250         append: function() {
251                 return this.domManip(arguments, true, false, function(elem){
252                         if (this.nodeType == 1)
253                                 this.appendChild( elem );
254                 });
255         },
256
257         prepend: function() {
258                 return this.domManip(arguments, true, true, function(elem){
259                         if (this.nodeType == 1)
260                                 this.insertBefore( elem, this.firstChild );
261                 });
262         },
263         
264         before: function() {
265                 return this.domManip(arguments, false, false, function(elem){
266                         this.parentNode.insertBefore( elem, this );
267                 });
268         },
269
270         after: function() {
271                 return this.domManip(arguments, false, true, function(elem){
272                         this.parentNode.insertBefore( elem, this.nextSibling );
273                 });
274         },
275
276         end: function() {
277                 return this.prevObject || jQuery( [] );
278         },
279
280         find: function( selector ) {
281                 var elems = jQuery.map(this, function(elem){
282                         return jQuery.find( selector, elem );
283                 });
284
285                 return this.pushStack( /[^+>] [^+>]/.test( selector ) || selector.indexOf("..") > -1 ?
286                         jQuery.unique( elems ) :
287                         elems );
288         },
289
290         clone: function( events ) {
291                 // Do the clone
292                 var ret = this.map(function(){
293                         if ( jQuery.browser.msie ) {
294                                 // IE copies events bound via attachEvent when
295                                 // using cloneNode. Calling detachEvent on the
296                                 // clone will also remove the events from the orignal
297                                 // In order to get around this, we use innerHTML.
298                                 // Unfortunately, this means some modifications to 
299                                 // attributes in IE that are actually only stored 
300                                 // as properties will not be copied (such as the
301                                 // the name attribute on an input).
302                                 var clone = this.cloneNode(true),
303                                         container = document.createElement("div"),
304                                         container2 = document.createElement("div");
305                                 container.appendChild(clone);
306                                 container2.innerHTML = container.innerHTML;
307                                 return container2.firstChild;
308                         } else
309                                 return this.cloneNode(true);
310                 });
311
312                 // Need to set the expando to null on the cloned set if it exists
313                 // removeData doesn't work here, IE removes it from the original as well
314                 // this is primarily for IE but the data expando shouldn't be copied over in any browser
315                 var clone = ret.find("*").andSelf().each(function(){
316                         if ( this[ expando ] != undefined )
317                                 this[ expando ] = null;
318                 });
319                 
320                 // Copy the events from the original to the clone
321                 if ( events === true )
322                         this.find("*").andSelf().each(function(i){
323                                 var events = jQuery.data( this, "events" );
324
325                                 for ( var type in events )
326                                         for ( var handler in events[ type ] )
327                                                 jQuery.event.add( clone[ i ], type, events[ type ][ handler ], events[ type ][ handler ].data );
328                         });
329
330                 // Return the cloned set
331                 return ret;
332         },
333
334         filter: function( selector ) {
335                 return this.pushStack(
336                         jQuery.isFunction( selector ) &&
337                         jQuery.grep(this, function(elem, i){
338                                 return selector.call( elem, i );
339                         }) ||
340
341                         jQuery.multiFilter( selector, this ) );
342         },
343
344         not: function( selector ) {
345                 return this.pushStack(
346                         selector.constructor == String &&
347                         jQuery.multiFilter( selector, this, true ) ||
348
349                         jQuery.grep(this, function(elem) {
350                                 return selector.constructor == Array || selector.jquery ?
351                                         jQuery.inArray( elem, selector ) < 0 :
352                                         elem != selector;
353                         }) );
354         },
355
356         add: function( selector ) {
357                 return !selector ? this : this.pushStack( jQuery.merge( 
358                         this.get(),
359                         selector.constructor == String ? 
360                                 jQuery( selector ).get() :
361                                 selector.length != undefined && (!selector.nodeName || jQuery.nodeName(selector, "form")) ?
362                                         selector : [selector] ) );
363         },
364
365         is: function( selector ) {
366                 return selector ?
367                         jQuery.multiFilter( selector, this ).length > 0 :
368                         false;
369         },
370
371         hasClass: function( selector ) {
372                 return this.is( "." + selector );
373         },
374         
375         val: function( value ) {
376                 if ( value == undefined ) {
377
378                         if ( this.length ) {
379                                 var elem = this[0];
380
381                                 // We need to handle select boxes special
382                                 if ( jQuery.nodeName( elem, "select" ) ) {
383                                         var index = elem.selectedIndex,
384                                                 values = [],
385                                                 options = elem.options,
386                                                 one = elem.type == "select-one";
387                                         
388                                         // Nothing was selected
389                                         if ( index < 0 )
390                                                 return null;
391
392                                         // Loop through all the selected options
393                                         for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
394                                                 var option = options[ i ];
395
396                                                 if ( option.selected ) {
397                                                         // Get the specifc value for the option
398                                                         value = jQuery.browser.msie && !option.attributes.value.specified ? option.text : option.value;
399                                                         
400                                                         // We don't need an array for one selects
401                                                         if ( one )
402                                                                 return value;
403                                                         
404                                                         // Multi-Selects return an array
405                                                         values.push( value );
406                                                 }
407                                         }
408                                         
409                                         return values;
410                                         
411                                 // Everything else, we just grab the value
412                                 } else
413                                         return (this[0].value || "").replace(/\r/g, "");
414
415                         }
416
417                 } else
418                         return this.each(function(){
419                                 if ( this.nodeType != 1 )
420                                         return;
421
422                                 if ( value.constructor == Array && /radio|checkbox/.test( this.type ) )
423                                         this.checked = (jQuery.inArray(this.value, value) >= 0 ||
424                                                 jQuery.inArray(this.name, value) >= 0);
425
426                                 else if ( jQuery.nodeName( this, "select" ) ) {
427                                         var values = value.constructor == Array ?
428                                                 value :
429                                                 [ value ];
430
431                                         jQuery( "option", this ).each(function(){
432                                                 this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
433                                                         jQuery.inArray( this.text, values ) >= 0);
434                                         });
435
436                                         if ( !values.length )
437                                                 this.selectedIndex = -1;
438
439                                 } else
440                                         this.value = value;
441                         });
442         },
443         
444         html: function( value ) {
445                 return value == undefined ?
446                         (this.length ?
447                                 this[0].innerHTML :
448                                 null) :
449                         this.empty().append( value );
450         },
451
452         replaceWith: function( value ) {
453                 return this.after( value ).remove();
454         },
455
456         eq: function( i ) {
457                 return this.slice( i, i + 1 );
458         },
459
460         slice: function() {
461                 return this.pushStack( Array.prototype.slice.apply( this, arguments ) );
462         },
463
464         map: function( callback ) {
465                 return this.pushStack( jQuery.map(this, function(elem, i){
466                         return callback.call( elem, i, elem );
467                 }));
468         },
469
470         andSelf: function() {
471                 return this.add( this.prevObject );
472         },
473         
474         domManip: function( args, table, reverse, callback ) {
475                 var clone = this.length > 1, elems; 
476
477                 return this.each(function(){
478                         if ( !elems ) {
479                                 elems = jQuery.clean( args, this.ownerDocument );
480
481                                 if ( reverse )
482                                         elems.reverse();
483                         }
484
485                         var obj = this;
486
487                         if ( table && jQuery.nodeName( this, "table" ) && jQuery.nodeName( elems[0], "tr" ) )
488                                 obj = this.getElementsByTagName("tbody")[0] || this.appendChild( this.ownerDocument.createElement("tbody") );
489
490                         var scripts = jQuery( [] );
491
492                         jQuery.each(elems, function(){
493                                 var elem = clone ?
494                                         this.cloneNode( true ) :
495                                         this;
496
497                                 if ( jQuery.nodeName( elem, "script" ) ) {
498
499                                         // If scripts are waiting to be executed, wait on this script as well
500                                         if ( scripts.length )
501                                                 scripts = scripts.add( elem );
502
503                                         // If nothing is waiting to be executed, run immediately
504                                         else
505                                                 evalScript( 0, elem );
506
507                                 } else {
508                                         // Remove any inner scripts for later evaluation
509                                         if ( elem.nodeType == 1 )
510                                                 scripts = scripts.add( jQuery( "script", elem ).remove() );
511
512                                         // Inject the elements into the document
513                                         callback.call( obj, elem );
514                                 }
515                         });
516
517                         scripts.each( evalScript );
518                 });
519         }
520 };
521
522 // Give the init function the jQuery prototype for later instantiation
523 jQuery.prototype.init.prototype = jQuery.prototype;
524
525 function evalScript( i, elem ) {
526         if ( elem.src )
527                 jQuery.ajax({
528                         url: elem.src,
529                         async: false,
530                         dataType: "script"
531                 });
532
533         else
534                 jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
535
536         if ( elem.parentNode )
537                 elem.parentNode.removeChild( elem );
538 }
539
540 jQuery.extend = jQuery.fn.extend = function() {
541         // copy reference to target object
542         var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options;
543
544         // Handle a deep copy situation
545         if ( target.constructor == Boolean ) {
546                 deep = target;
547                 target = arguments[1] || {};
548                 // skip the boolean and the target
549                 i = 2;
550         }
551
552         // Handle case when target is a string or something (possible in deep copy)
553         if ( typeof target != "object" && typeof target != "function" )
554                 target = {};
555
556         // extend jQuery itself if only one argument is passed
557         if ( length == 1 ) {
558                 target = this;
559                 i = 0;
560         }
561
562         for ( ; i < length; i++ )
563                 // Only deal with non-null/undefined values
564                 if ( (options = arguments[ i ]) != null )
565                         // Extend the base object
566                         for ( var name in options ) {
567                                 // Prevent never-ending loop
568                                 if ( target === options[ name ] )
569                                         continue;
570
571                                 // Recurse if we're merging object values
572                                 if ( deep && options[ name ] && typeof options[ name ] == "object" && target[ name ] && !options[ name ].nodeType )
573                                         target[ name ] = jQuery.extend( target[ name ], options[ name ] );
574
575                                 // Don't bring in undefined values
576                                 else if ( options[ name ] != undefined )
577                                         target[ name ] = options[ name ];
578
579                         }
580
581         // Return the modified object
582         return target;
583 };
584
585 var expando = "jQuery" + (new Date()).getTime(), uuid = 0, windowData = {};
586
587 // exclude the following css properties to add px
588 var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i;
589
590 jQuery.extend({
591         noConflict: function( deep ) {
592                 window.$ = _$;
593
594                 if ( deep )
595                         window.jQuery = _jQuery;
596
597                 return jQuery;
598         },
599
600         // This may seem like some crazy code, but trust me when I say that this
601         // is the only cross-browser way to do this. --John
602         isFunction: function( fn ) {
603                 return !!fn && typeof fn != "string" && !fn.nodeName && 
604                         fn.constructor != Array && /function/i.test( fn + "" );
605         },
606         
607         // check if an element is in a (or is an) XML document
608         isXMLDoc: function( elem ) {
609                 return elem.documentElement && !elem.body ||
610                         elem.tagName && elem.ownerDocument && !elem.ownerDocument.body;
611         },
612
613         // Evalulates a script in a global context
614         globalEval: function( data ) {
615                 data = jQuery.trim( data );
616
617                 if ( data ) {
618                         // Inspired by code by Andrea Giammarchi
619                         // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
620                         var head = document.getElementsByTagName("head")[0] || document.documentElement,
621                                 script = document.createElement("script");
622
623                         script.type = "text/javascript";
624                         if ( jQuery.browser.msie )
625                                 script.text = data;
626                         else
627                                 script.appendChild( document.createTextNode( data ) );
628
629                         head.appendChild( script );
630                         head.removeChild( script );
631                 }
632         },
633
634         nodeName: function( elem, name ) {
635                 return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
636         },
637         
638         cache: {},
639         
640         data: function( elem, name, data ) {
641                 elem = elem == window ?
642                         windowData :
643                         elem;
644
645                 var id = elem[ expando ];
646
647                 // Compute a unique ID for the element
648                 if ( !id ) 
649                         id = elem[ expando ] = ++uuid;
650
651                 // Only generate the data cache if we're
652                 // trying to access or manipulate it
653                 if ( name && !jQuery.cache[ id ] )
654                         jQuery.cache[ id ] = {};
655                 
656                 // Prevent overriding the named cache with undefined values
657                 if ( data != undefined )
658                         jQuery.cache[ id ][ name ] = data;
659                 
660                 // Return the named cache data, or the ID for the element       
661                 return name ?
662                         jQuery.cache[ id ][ name ] :
663                         id;
664         },
665         
666         removeData: function( elem, name ) {
667                 elem = elem == window ?
668                         windowData :
669                         elem;
670
671                 var id = elem[ expando ];
672
673                 // If we want to remove a specific section of the element's data
674                 if ( name ) {
675                         if ( jQuery.cache[ id ] ) {
676                                 // Remove the section of cache data
677                                 delete jQuery.cache[ id ][ name ];
678
679                                 // If we've removed all the data, remove the element's cache
680                                 name = "";
681
682                                 for ( name in jQuery.cache[ id ] )
683                                         break;
684
685                                 if ( !name )
686                                         jQuery.removeData( elem );
687                         }
688
689                 // Otherwise, we want to remove all of the element's data
690                 } else {
691                         // Clean up the element expando
692                         try {
693                                 delete elem[ expando ];
694                         } catch(e){
695                                 // IE has trouble directly removing the expando
696                                 // but it's ok with using removeAttribute
697                                 if ( elem.removeAttribute )
698                                         elem.removeAttribute( expando );
699                         }
700
701                         // Completely remove the data cache
702                         delete jQuery.cache[ id ];
703                 }
704         },
705
706         // args is for internal usage only
707         each: function( object, callback, args ) {
708                 if ( args ) {
709                         if ( object.length == undefined )
710                                 for ( var name in object )
711                                         callback.apply( object[ name ], args );
712                         else
713                                 for ( var i = 0, length = object.length; i < length; i++ )
714                                         if ( callback.apply( object[ i ], args ) === false )
715                                                 break;
716
717                 // A special, fast, case for the most common use of each
718                 } else {
719                         if ( object.length == undefined )
720                                 for ( var name in object )
721                                         callback.call( object[ name ], name, object[ name ] );
722                         else
723                                 for ( var i = 0, length = object.length, value = object[0]; 
724                                         i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
725                 }
726
727                 return object;
728         },
729         
730         prop: function( elem, value, type, i, name ) {
731                         // Handle executable functions
732                         if ( jQuery.isFunction( value ) )
733                                 value = value.call( elem, i );
734                                 
735                         // Handle passing in a number to a CSS property
736                         return value && value.constructor == Number && type == "curCSS" && !exclude.test( name ) ?
737                                 value + "px" :
738                                 value;
739         },
740
741         className: {
742                 // internal only, use addClass("class")
743                 add: function( elem, classNames ) {
744                         jQuery.each((classNames || "").split(/\s+/), function(i, className){
745                                 if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
746                                         elem.className += (elem.className ? " " : "") + className;
747                         });
748                 },
749
750                 // internal only, use removeClass("class")
751                 remove: function( elem, classNames ) {
752                         if (elem.nodeType == 1)
753                                 elem.className = classNames != undefined ?
754                                         jQuery.grep(elem.className.split(/\s+/), function(className){
755                                                 return !jQuery.className.has( classNames, className );  
756                                         }).join(" ") :
757                                         "";
758                 },
759
760                 // internal only, use is(".class")
761                 has: function( elem, className ) {
762                         return jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
763                 }
764         },
765
766         // A method for quickly swapping in/out CSS properties to get correct calculations
767         swap: function( elem, options, callback ) {
768                 // Remember the old values, and insert the new ones
769                 for ( var name in options ) {
770                         elem.style[ "old" + name ] = elem.style[ name ];
771                         elem.style[ name ] = options[ name ];
772                 }
773
774                 callback.call( elem );
775
776                 // Revert the old values
777                 for ( var name in options )
778                         elem.style[ name ] = elem.style[ "old" + name ];
779         },
780
781         css: function( elem, name, force ) {
782                 if ( name == "height" || name == "width" ) {
783                         var old = {}, height, width;
784
785                         // Revert the padding and border widths to get the
786                         // correct height/width values
787                         jQuery.each([ "Top", "Bottom", "Right", "Left" ], function(){
788                                 old[ "padding" + this ] = 0;
789                                 old[ "border" + this + "Width" ] = 0;
790                         });
791
792                         // Swap out the padding/border values temporarily
793                         jQuery.swap( elem, old, function() {
794
795                                 // If the element is visible, then the calculation is easy
796                                 if ( jQuery( elem ).is(":visible") ) {
797                                         height = elem.offsetHeight;
798                                         width = elem.offsetWidth;
799
800                                 // Otherwise, we need to flip out more values
801                                 } else {
802                                         elem = jQuery( elem.cloneNode(true) )
803                                                 .find(":radio").removeAttr("checked").removeAttr("defaultChecked").end()
804                                                 .css({
805                                                         visibility: "hidden",
806                                                         position: "absolute",
807                                                         display: "block",
808                                                         right: "0",
809                                                         left: "0"
810                                                 }).appendTo( elem.parentNode )[0];
811
812                                         var position = jQuery.css( elem.parentNode, "position" ) || "static";
813                                         if ( position == "static" )
814                                                 elem.parentNode.style.position = "relative";
815
816                                         height = elem.clientHeight;
817                                         width = elem.clientWidth;
818
819                                         if ( position == "static" )
820                                                 elem.parentNode.style.position = "static";
821
822                                         elem.parentNode.removeChild( elem );
823                                 }
824                         });
825
826                         return name == "height" ?
827                                 height :
828                                 width;
829                 }
830
831                 return jQuery.curCSS( elem, name, force );
832         },
833
834         curCSS: function( elem, name, force ) {
835                 var ret;
836
837                 // A helper method for determining if an element's values are broken
838                 function color( elem ) {
839                         if ( !jQuery.browser.safari )
840                                 return false;
841
842                         var ret = document.defaultView.getComputedStyle( elem, null );
843                         return !ret || ret.getPropertyValue("color") == "";
844                 }
845
846                 // We need to handle opacity special in IE
847                 if ( name == "opacity" && jQuery.browser.msie ) {
848                         ret = jQuery.attr( elem.style, "opacity" );
849
850                         return ret == "" ?
851                                 "1" :
852                                 ret;
853                 }
854                 
855                 // Make sure we're using the right name for getting the float value
856                 if ( name.match( /float/i ) )
857                         name = styleFloat;
858
859                 if ( !force && elem.style[ name ] )
860                         ret = elem.style[ name ];
861
862                 else if ( document.defaultView && document.defaultView.getComputedStyle ) {
863
864                         // Only "float" is needed here
865                         if ( name.match( /float/i ) )
866                                 name = "float";
867
868                         name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();
869
870                         var getComputedStyle = document.defaultView.getComputedStyle( elem, null );
871
872                         if ( getComputedStyle && !color( elem ) )
873                                 ret = getComputedStyle.getPropertyValue( name );
874
875                         // If the element isn't reporting its values properly in Safari
876                         // then some display: none elements are involved
877                         else {
878                                 var swap = [], stack = [];
879
880                                 // Locate all of the parent display: none elements
881                                 for ( var a = elem; a && color(a); a = a.parentNode )
882                                         stack.unshift(a);
883
884                                 // Go through and make them visible, but in reverse
885                                 // (It would be better if we knew the exact display type that they had)
886                                 for ( var i = 0; i < stack.length; i++ )
887                                         if ( color( stack[ i ] ) ) {
888                                                 swap[ i ] = stack[ i ].style.display;
889                                                 stack[ i ].style.display = "block";
890                                         }
891
892                                 // Since we flip the display style, we have to handle that
893                                 // one special, otherwise get the value
894                                 ret = name == "display" && swap[ stack.length - 1 ] != null ?
895                                         "none" :
896                                         ( getComputedStyle && getComputedStyle.getPropertyValue( name ) ) || "";
897
898                                 // Finally, revert the display styles back
899                                 for ( var i = 0; i < swap.length; i++ )
900                                         if ( swap[ i ] != null )
901                                                 stack[ i ].style.display = swap[ i ];
902                         }
903
904                         // We should always get a number back from opacity
905                         if ( name == "opacity" && ret == "" )
906                                 ret = "1";
907
908                 } else if ( elem.currentStyle ) {
909                         var camelCase = name.replace(/\-(\w)/g, function(all, letter){
910                                 return letter.toUpperCase();
911                         });
912
913                         ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];
914
915                         // From the awesome hack by Dean Edwards
916                         // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
917
918                         // If we're not dealing with a regular pixel number
919                         // but a number that has a weird ending, we need to convert it to pixels
920                         if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
921                                 // Remember the original values
922                                 var style = elem.style.left, runtimeStyle = elem.runtimeStyle.left;
923
924                                 // Put in the new values to get a computed value out
925                                 elem.runtimeStyle.left = elem.currentStyle.left;
926                                 elem.style.left = ret || 0;
927                                 ret = elem.style.pixelLeft + "px";
928
929                                 // Revert the changed values
930                                 elem.style.left = style;
931                                 elem.runtimeStyle.left = runtimeStyle;
932                         }
933                 }
934
935                 return ret;
936         },
937         
938         clean: function( elems, context ) {
939                 var ret = [];
940                 context = context || document;
941                 // !context.createElement fails in IE with an error but returns typeof 'object'
942                 if (typeof context.createElement == 'undefined') 
943                         context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
944
945                 jQuery.each(elems, function(i, elem){
946                         if ( !elem )
947                                 return;
948
949                         if ( elem.constructor == Number )
950                                 elem = elem.toString();
951                         
952                         // Convert html string into DOM nodes
953                         if ( typeof elem == "string" ) {
954                                 // Fix "XHTML"-style tags in all browsers
955                                 elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
956                                         return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i) ?
957                                                 all :
958                                                 front + "></" + tag + ">";
959                                 });
960
961                                 // Trim whitespace, otherwise indexOf won't work as expected
962                                 var tags = jQuery.trim( elem ).toLowerCase(), div = context.createElement("div");
963
964                                 var wrap =
965                                         // option or optgroup
966                                         !tags.indexOf("<opt") &&
967                                         [ 1, "<select multiple='multiple'>", "</select>" ] ||
968                                         
969                                         !tags.indexOf("<leg") &&
970                                         [ 1, "<fieldset>", "</fieldset>" ] ||
971                                         
972                                         tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
973                                         [ 1, "<table>", "</table>" ] ||
974                                         
975                                         !tags.indexOf("<tr") &&
976                                         [ 2, "<table><tbody>", "</tbody></table>" ] ||
977                                         
978                                         // <thead> matched above
979                                         (!tags.indexOf("<td") || !tags.indexOf("<th")) &&
980                                         [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||
981                                         
982                                         !tags.indexOf("<col") &&
983                                         [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||
984
985                                         // IE can't serialize <link> and <script> tags normally
986                                         jQuery.browser.msie &&
987                                         [ 1, "div<div>", "</div>" ] ||
988                                         
989                                         [ 0, "", "" ];
990
991                                 // Go to html and back, then peel off extra wrappers
992                                 div.innerHTML = wrap[1] + elem + wrap[2];
993                                 
994                                 // Move to the right depth
995                                 while ( wrap[0]-- )
996                                         div = div.lastChild;
997                                 
998                                 // Remove IE's autoinserted <tbody> from table fragments
999                                 if ( jQuery.browser.msie ) {
1000                                         
1001                                         // String was a <table>, *may* have spurious <tbody>
1002                                         var tbody = !tags.indexOf("<table") && tags.indexOf("<tbody") < 0 ?
1003                                                 div.firstChild && div.firstChild.childNodes :
1004                                                 
1005                                                 // String was a bare <thead> or <tfoot>
1006                                                 wrap[1] == "<table>" && tags.indexOf("<tbody") < 0 ?
1007                                                         div.childNodes :
1008                                                         [];
1009                                 
1010                                         for ( var i = tbody.length - 1; i >= 0 ; --i )
1011                                                 if ( jQuery.nodeName( tbody[ i ], "tbody" ) && !tbody[ i ].childNodes.length )
1012                                                         tbody[ i ].parentNode.removeChild( tbody[ i ] );
1013                                         
1014                                         // IE completely kills leading whitespace when innerHTML is used        
1015                                         if ( /^\s/.test( elem ) )       
1016                                                 div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
1017                                 
1018                                 }
1019                                 
1020                                 elem = jQuery.makeArray( div.childNodes );
1021                         }
1022
1023                         if ( elem.length === 0 && (!jQuery.nodeName( elem, "form" ) && !jQuery.nodeName( elem, "select" )) )
1024                                 return;
1025
1026                         if ( elem[0] == undefined || jQuery.nodeName( elem, "form" ) || elem.options )
1027                                 ret.push( elem );
1028
1029                         else
1030                                 ret = jQuery.merge( ret, elem );
1031
1032                 });
1033
1034                 return ret;
1035         },
1036         
1037         attr: function( elem, name, value ) {
1038                 // don't set attributes on text and comment nodes
1039                 if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
1040                         return undefined;
1041
1042                 var fix = jQuery.isXMLDoc( elem ) ?
1043                         {} :
1044                         jQuery.props;
1045
1046                 // Safari mis-reports the default selected property of a hidden option
1047                 // Accessing the parent's selectedIndex property fixes it
1048                 if ( name == "selected" && jQuery.browser.safari )
1049                         elem.parentNode.selectedIndex;
1050                 
1051                 // Certain attributes only work when accessed via the old DOM 0 way
1052                 if ( fix[ name ] ) {
1053                         if ( value != undefined )
1054                                 elem[ fix[ name ] ] = value;
1055
1056                         return elem[ fix[ name ] ];
1057
1058                 } else if ( jQuery.browser.msie && name == "style" )
1059                         return jQuery.attr( elem.style, "cssText", value );
1060
1061                 else if ( value == undefined && jQuery.browser.msie && jQuery.nodeName( elem, "form" ) && (name == "action" || name == "method") )
1062                         return elem.getAttributeNode( name ).nodeValue;
1063
1064                 // IE elem.getAttribute passes even for style
1065                 else if ( elem.tagName ) {
1066
1067                         if ( value != undefined ) {
1068                                 // We can't allow the type property to be changed (since it causes problems in IE)
1069                                 if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
1070                                         throw "type property can't be changed";
1071
1072                                 // convert the value to a string (all browsers do this but IE) see #1070
1073                                 elem.setAttribute( name, "" + value );
1074                         }
1075
1076                         if ( jQuery.browser.msie && /href|src/.test( name ) && !jQuery.isXMLDoc( elem ) ) 
1077                                 return elem.getAttribute( name, 2 );
1078
1079                         return elem.getAttribute( name );
1080
1081                 // elem is actually elem.style ... set the style
1082                 } else {
1083                         // IE actually uses filters for opacity
1084                         if ( name == "opacity" && jQuery.browser.msie ) {
1085                                 if ( value != undefined ) {
1086                                         // IE has trouble with opacity if it does not have layout
1087                                         // Force it by setting the zoom level
1088                                         elem.zoom = 1; 
1089         
1090                                         // Set the alpha filter to set the opacity
1091                                         elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
1092                                                 (parseFloat( value ).toString() == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
1093                                 }
1094         
1095                                 return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
1096                                         (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100).toString() :
1097                                         "";
1098                         }
1099
1100                         name = name.replace(/-([a-z])/ig, function(all, letter){
1101                                 return letter.toUpperCase();
1102                         });
1103
1104                         if ( value != undefined )
1105                                 elem[ name ] = value;
1106
1107                         return elem[ name ];
1108                 }
1109         },
1110         
1111         trim: function( text ) {
1112                 return (text || "").replace( /^\s+|\s+$/g, "" );
1113         },
1114
1115         makeArray: function( array ) {
1116                 var ret = [];
1117
1118                 // Need to use typeof to fight Safari childNodes crashes
1119                 if ( typeof array != "array" )
1120                         for ( var i = 0, length = array.length; i < length; i++ )
1121                                 ret.push( array[ i ] );
1122                 else
1123                         ret = array.slice( 0 );
1124
1125                 return ret;
1126         },
1127
1128         inArray: function( elem, array ) {
1129                 for ( var i = 0, length = array.length; i < length; i++ )
1130                         if ( array[ i ] == elem )
1131                                 return i;
1132
1133                 return -1;
1134         },
1135
1136         merge: function( first, second ) {
1137                 // We have to loop this way because IE & Opera overwrite the length
1138                 // expando of getElementsByTagName
1139
1140                 // Also, we need to make sure that the correct elements are being returned
1141                 // (IE returns comment nodes in a '*' query)
1142                 if ( jQuery.browser.msie ) {
1143                         for ( var i = 0; second[ i ]; i++ )
1144                                 if ( second[ i ].nodeType != 8 )
1145                                         first.push( second[ i ] );
1146
1147                 } else
1148                         for ( var i = 0; second[ i ]; i++ )
1149                                 first.push( second[ i ] );
1150
1151                 return first;
1152         },
1153
1154         unique: function( array ) {
1155                 var ret = [], done = {};
1156
1157                 try {
1158
1159                         for ( var i = 0, length = array.length; i < length; i++ ) {
1160                                 var id = jQuery.data( array[ i ] );
1161
1162                                 if ( !done[ id ] ) {
1163                                         done[ id ] = true;
1164                                         ret.push( array[ i ] );
1165                                 }
1166                         }
1167
1168                 } catch( e ) {
1169                         ret = array;
1170                 }
1171
1172                 return ret;
1173         },
1174
1175         grep: function( elems, callback, inv ) {
1176                 // If a string is passed in for the function, make a function
1177                 // for it (a handy shortcut)
1178                 if ( typeof callback == "string" )
1179                         callback = eval("false||function(a,i){return " + callback + "}");
1180
1181                 var ret = [];
1182
1183                 // Go through the array, only saving the items
1184                 // that pass the validator function
1185                 for ( var i = 0, length = elems.length; i < length; i++ )
1186                         if ( !inv && callback( elems[ i ], i ) || inv && !callback( elems[ i ], i ) )
1187                                 ret.push( elems[ i ] );
1188
1189                 return ret;
1190         },
1191
1192         map: function( elems, callback ) {
1193                 var ret = [];
1194
1195                 // Go through the array, translating each of the items to their
1196                 // new value (or values).
1197                 for ( var i = 0, length = elems.length; i < length; i++ ) {
1198                         var value = callback( elems[ i ], i );
1199
1200                         if ( value !== null && value != undefined ) {
1201                                 if ( value.constructor != Array )
1202                                         value = [ value ];
1203
1204                                 ret = ret.concat( value );
1205                         }
1206                 }
1207
1208                 return ret;
1209         }
1210 });
1211
1212 var userAgent = navigator.userAgent.toLowerCase();
1213
1214 // Figure out what browser is being used
1215 jQuery.browser = {
1216         version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1],
1217         safari: /webkit/.test( userAgent ),
1218         opera: /opera/.test( userAgent ),
1219         msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
1220         mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
1221 };
1222
1223 var styleFloat = jQuery.browser.msie ?
1224         "styleFloat" :
1225         "cssFloat";
1226         
1227 jQuery.extend({
1228         // Check to see if the W3C box model is being used
1229         boxModel: !jQuery.browser.msie || document.compatMode == "CSS1Compat",
1230         
1231         props: {
1232                 "for": "htmlFor",
1233                 "class": "className",
1234                 "float": styleFloat,
1235                 cssFloat: styleFloat,
1236                 styleFloat: styleFloat,
1237                 innerHTML: "innerHTML",
1238                 className: "className",
1239                 value: "value",
1240                 disabled: "disabled",
1241                 checked: "checked",
1242                 readonly: "readOnly",
1243                 selected: "selected",
1244                 maxlength: "maxLength",
1245                 selectedIndex: "selectedIndex",
1246                 defaultValue: "defaultValue",
1247                 tagName: "tagName",
1248                 nodeName: "nodeName"
1249         }
1250 });
1251
1252 jQuery.each({
1253         parent: "elem.parentNode",
1254         parents: "jQuery.dir(elem,'parentNode')",
1255         next: "jQuery.nth(elem,2,'nextSibling')",
1256         prev: "jQuery.nth(elem,2,'previousSibling')",
1257         nextAll: "jQuery.dir(elem,'nextSibling')",
1258         prevAll: "jQuery.dir(elem,'previousSibling')",
1259         siblings: "jQuery.sibling(elem.parentNode.firstChild,elem)",
1260         children: "jQuery.sibling(elem.firstChild)",
1261         contents: "jQuery.nodeName(elem,'iframe')?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes)"
1262 }, function(name, fn){
1263         fn = eval("false||function(elem){return " + fn + "}");
1264
1265         jQuery.fn[ name ] = function( selector ) {
1266                 var ret = jQuery.map( this, fn );
1267
1268                 if ( selector && typeof selector == "string" )
1269                         ret = jQuery.multiFilter( selector, ret );
1270
1271                 return this.pushStack( jQuery.unique( ret ) );
1272         };
1273 });
1274
1275 jQuery.each({
1276         appendTo: "append",
1277         prependTo: "prepend",
1278         insertBefore: "before",
1279         insertAfter: "after",
1280         replaceAll: "replaceWith"
1281 }, function(name, original){
1282         jQuery.fn[ name ] = function() {
1283                 var args = arguments;
1284
1285                 return this.each(function(){
1286                         for ( var i = 0, length = args.length; i < length; i++ )
1287                                 jQuery( args[ i ] )[ original ]( this );
1288                 });
1289         };
1290 });
1291
1292 jQuery.each({
1293         removeAttr: function( name ) {
1294                 jQuery.attr( this, name, "" );
1295                 if (this.nodeType == 1) 
1296                         this.removeAttribute( name );
1297         },
1298
1299         addClass: function( classNames ) {
1300                 jQuery.className.add( this, classNames );
1301         },
1302
1303         removeClass: function( classNames ) {
1304                 jQuery.className.remove( this, classNames );
1305         },
1306
1307         toggleClass: function( classNames ) {
1308                 jQuery.className[ jQuery.className.has( this, classNames ) ? "remove" : "add" ]( this, classNames );
1309         },
1310
1311         remove: function( selector ) {
1312                 if ( !selector || jQuery.filter( selector, [ this ] ).r.length ) {
1313                         // Prevent memory leaks
1314                         jQuery( "*", this ).add(this).each(function(){
1315                                 jQuery.event.remove(this);
1316                                 jQuery.removeData(this);
1317                         });
1318                         if (this.parentNode)
1319                                 this.parentNode.removeChild( this );
1320                 }
1321         },
1322
1323         empty: function() {
1324                 // Remove element nodes and prevent memory leaks
1325                 jQuery( ">*", this ).remove();
1326                 
1327                 // Remove any remaining nodes
1328                 while ( this.firstChild )
1329                         this.removeChild( this.firstChild );
1330         }
1331 }, function(name, fn){
1332         jQuery.fn[ name ] = function(){
1333                 return this.each( fn, arguments );
1334         };
1335 });
1336
1337 jQuery.each([ "Height", "Width" ], function(i, name){
1338         var type = name.toLowerCase();
1339         
1340         jQuery.fn[ type ] = function( size ) {
1341                 // Get window width or height
1342                 return this[0] == window ?
1343                         // Opera reports document.body.client[Width/Height] properly in both quirks and standards
1344                         jQuery.browser.opera && document.body[ "client" + name ] || 
1345                         
1346                         // Safari reports inner[Width/Height] just fine (Mozilla and Opera include scroll bar widths)
1347                         jQuery.browser.safari && window[ "inner" + name ] ||
1348                         
1349                         // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
1350                         document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] || document.body[ "client" + name ] :
1351                 
1352                         // Get document width or height
1353                         this[0] == document ?
1354                                 // Either scroll[Width/Height] or offset[Width/Height], whichever is greater (Mozilla reports scrollWidth the same as offsetWidth)
1355                                 Math.max( document.body[ "scroll" + name ], document.body[ "offset" + name ] ) :
1356
1357                                 // Get or set width or height on the element
1358                                 size == undefined ?
1359                                         // Get width or height on the element
1360                                         (this.length ? jQuery.css( this[0], type ) : null) :
1361
1362                                         // Set the width or height on the element (default to pixels if value is unitless)
1363                                         this.css( type, size.constructor == String ? size : size + "px" );
1364         };
1365 });