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