mainly made the code shorter:
[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 == null ) {
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 == null && 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 == 1 ) {
570                 target = this;
571                 i = 0;
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                                 // Prevent never-ending loop
580                                 if ( target === options[ name ] )
581                                         continue;
582
583                                 // Recurse if we're merging object values
584                                 if ( deep && options[ name ] && typeof options[ name ] == "object" && target[ name ] && !options[ name ].nodeType )
585                                         target[ name ] = jQuery.extend( deep, target[ name ], options[ name ] );
586
587                                 // Don't bring in undefined values
588                                 else if ( options[ name ] != undefined )
589                                         target[ name ] = options[ name ];
590
591                         }
592
593         // Return the modified object
594         return target;
595 };
596
597 var expando = "jQuery" + now(), uuid = 0, windowData = {},
598
599 // exclude the following css properties to add px
600         exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
601 // cache getComputedStyle
602         getComputedStyle = document.defaultView && document.defaultView.getComputedStyle;
603
604 jQuery.extend({
605         noConflict: function( deep ) {
606                 window.$ = _$;
607
608                 if ( deep )
609                         window.jQuery = _jQuery;
610
611                 return jQuery;
612         },
613
614         // See test/unit/core.js for details concerning this function.
615         isFunction: function( fn ) {
616                 return !!fn && typeof fn != "string" && !fn.nodeName && 
617                         fn.constructor != Array && /function/i.test( fn + "" );
618         },
619         
620         // check if an element is in a (or is an) XML document
621         isXMLDoc: function( elem ) {
622                 return elem.documentElement && !elem.body ||
623                         elem.tagName && elem.ownerDocument && !elem.ownerDocument.body;
624         },
625
626         // Evalulates a script in a global context
627         globalEval: function( data ) {
628                 data = jQuery.trim( data );
629
630                 if ( data ) {
631                         // Inspired by code by Andrea Giammarchi
632                         // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
633                         var head = document.getElementsByTagName("head")[0] || document.documentElement,
634                                 script = document.createElement("script");
635
636                         script.type = "text/javascript";
637                         if ( jQuery.browser.msie )
638                                 script.text = data;
639                         else
640                                 script.appendChild( document.createTextNode( data ) );
641
642                         head.appendChild( script );
643                         head.removeChild( script );
644                 }
645         },
646
647         nodeName: function( elem, name ) {
648                 return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
649         },
650         
651         cache: {},
652         
653         data: function( elem, name, data ) {
654                 elem = elem == window ?
655                         windowData :
656                         elem;
657
658                 var id = elem[ expando ];
659
660                 // Compute a unique ID for the element
661                 if ( !id ) 
662                         id = elem[ expando ] = ++uuid;
663
664                 // Only generate the data cache if we're
665                 // trying to access or manipulate it
666                 if ( name && !jQuery.cache[ id ] )
667                         jQuery.cache[ id ] = {};
668                 
669                 // Prevent overriding the named cache with undefined values
670                 if ( data != undefined )
671                         jQuery.cache[ id ][ name ] = data;
672                 
673                 // Return the named cache data, or the ID for the element       
674                 return name ?
675                         jQuery.cache[ id ][ name ] :
676                         id;
677         },
678         
679         removeData: function( elem, name ) {
680                 elem = elem == window ?
681                         windowData :
682                         elem;
683
684                 var id = elem[ expando ];
685
686                 // If we want to remove a specific section of the element's data
687                 if ( name ) {
688                         if ( jQuery.cache[ id ] ) {
689                                 // Remove the section of cache data
690                                 delete jQuery.cache[ id ][ name ];
691
692                                 // If we've removed all the data, remove the element's cache
693                                 name = "";
694
695                                 for ( name in jQuery.cache[ id ] )
696                                         break;
697
698                                 if ( !name )
699                                         jQuery.removeData( elem );
700                         }
701
702                 // Otherwise, we want to remove all of the element's data
703                 } else {
704                         // Clean up the element expando
705                         try {
706                                 delete elem[ expando ];
707                         } catch(e){
708                                 // IE has trouble directly removing the expando
709                                 // but it's ok with using removeAttribute
710                                 if ( elem.removeAttribute )
711                                         elem.removeAttribute( expando );
712                         }
713
714                         // Completely remove the data cache
715                         delete jQuery.cache[ id ];
716                 }
717         },
718
719         // args is for internal usage only
720         each: function( object, callback, args ) {
721                 if ( args ) {
722                         if ( object.length == undefined ) {
723                                 for ( var name in object )
724                                         if ( callback.apply( object[ name ], args ) === false )
725                                                 break;
726                         } else
727                                 for ( var i = 0, length = object.length; i < length; i++ )
728                                         if ( callback.apply( object[ i ], args ) === false )
729                                                 break;
730
731                 // A special, fast, case for the most common use of each
732                 } else {
733                         if ( object.length == undefined ) {
734                                 for ( var name in object )
735                                         if ( callback.call( object[ name ], name, object[ name ] ) === false )
736                                                 break;
737                         } else
738                                 for ( var i = 0, length = object.length, value = object[0]; 
739                                         i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
740                 }
741
742                 return object;
743         },
744         
745         prop: function( elem, value, type, i, name ) {
746                         // Handle executable functions
747                         if ( jQuery.isFunction( value ) )
748                                 value = value.call( elem, i );
749                                 
750                         // Handle passing in a number to a CSS property
751                         return value && value.constructor == Number && type == "curCSS" && !exclude.test( name ) ?
752                                 value + "px" :
753                                 value;
754         },
755
756         className: {
757                 // internal only, use addClass("class")
758                 add: function( elem, classNames ) {
759                         jQuery.each((classNames || "").split(/\s+/), function(i, className){
760                                 if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
761                                         elem.className += (elem.className ? " " : "") + className;
762                         });
763                 },
764
765                 // internal only, use removeClass("class")
766                 remove: function( elem, classNames ) {
767                         if (elem.nodeType == 1)
768                                 elem.className = classNames != undefined ?
769                                         jQuery.grep(elem.className.split(/\s+/), function(className){
770                                                 return !jQuery.className.has( classNames, className );  
771                                         }).join(" ") :
772                                         "";
773                 },
774
775                 // internal only, use is(".class")
776                 has: function( elem, className ) {
777                         return jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
778                 }
779         },
780
781         // A method for quickly swapping in/out CSS properties to get correct calculations
782         swap: function( elem, options, callback ) {
783                 var old = {};
784                 // Remember the old values, and insert the new ones
785                 for ( var name in options ) {
786                         old[ name ] = elem.style[ name ];
787                         elem.style[ name ] = options[ name ];
788                 }
789
790                 callback.call( elem );
791
792                 // Revert the old values
793                 for ( var name in options )
794                         elem.style[ name ] = old[ name ];
795         },
796
797         css: function( elem, name, force ) {
798                 if ( name == "width" || name == "height" ) {
799                         var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ];
800                 
801                         function getWH() {
802                                 val = name == "width" ? elem.offsetWidth : elem.offsetHeight;
803                                 var padding = 0, border = 0;
804                                 jQuery.each( which, function() {
805                                         padding += parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0;
806                                         border += parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0;
807                                 });
808                                 val -= Math.round(padding + border);
809                         }
810                 
811                         if ( jQuery(elem).is(":visible") )
812                                 getWH();
813                         else
814                                 jQuery.swap( elem, props, getWH );
815                         
816                         return Math.max(0, val);
817                 }
818                 
819                 return jQuery.curCSS( elem, name, force );
820         },
821
822         curCSS: function( elem, name, force ) {
823                 var ret;
824
825                 // A helper method for determining if an element's values are broken
826                 function color( elem ) {
827                         if ( !jQuery.browser.safari )
828                                 return false;
829                         
830                         // getComputedStyle is cached
831                         var ret = getComputedStyle( elem, null );
832                         return !ret || ret.getPropertyValue("color") == "";
833                 }
834
835                 // We need to handle opacity special in IE
836                 if ( name == "opacity" && jQuery.browser.msie ) {
837                         ret = jQuery.attr( elem.style, "opacity" );
838
839                         return ret == "" ?
840                                 "1" :
841                                 ret;
842                 }
843                 // Opera sometimes will give the wrong display answer, this fixes it, see #2037
844                 if ( jQuery.browser.opera && name == "display" ) {
845                         var save = elem.style.outline;
846                         elem.style.outline = "0 solid black";
847                         elem.style.outline = save;
848                 }
849                 
850                 // Make sure we're using the right name for getting the float value
851                 if ( name.match( /float/i ) )
852                         name = styleFloat;
853
854                 if ( !force && elem.style && elem.style[ name ] )
855                         ret = elem.style[ name ];
856
857                 else if ( getComputedStyle ) {
858
859                         // Only "float" is needed here
860                         if ( name.match( /float/i ) )
861                                 name = "float";
862
863                         name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();
864
865                         var computedStyle = getComputedStyle( elem, null );
866
867                         if ( computedStyle && !color( elem ) )
868                                 ret = computedStyle.getPropertyValue( name );
869
870                         // If the element isn't reporting its values properly in Safari
871                         // then some display: none elements are involved
872                         else {
873                                 var swap = [], stack = [], a = elem, i = 0;
874
875                                 // Locate all of the parent display: none elements
876                                 for ( ; a && color(a); a = a.parentNode )
877                                         stack.unshift(a);
878
879                                 // Go through and make them visible, but in reverse
880                                 // (It would be better if we knew the exact display type that they had)
881                                 for ( ; i < stack.length; i++ )
882                                         if ( color( stack[ i ] ) ) {
883                                                 swap[ i ] = stack[ i ].style.display;
884                                                 stack[ i ].style.display = "block";
885                                         }
886
887                                 // Since we flip the display style, we have to handle that
888                                 // one special, otherwise get the value
889                                 ret = name == "display" && swap[ stack.length - 1 ] != null ?
890                                         "none" :
891                                         ( computedStyle && computedStyle.getPropertyValue( name ) ) || "";
892
893                                 // Finally, revert the display styles back
894                                 for ( i = 0; i < swap.length; i++ )
895                                         if ( swap[ i ] != null )
896                                                 stack[ i ].style.display = swap[ i ];
897                         }
898
899                         // We should always get a number back from opacity
900                         if ( name == "opacity" && ret == "" )
901                                 ret = "1";
902
903                 } else if ( elem.currentStyle ) {
904                         var camelCase = name.replace(/\-(\w)/g, function(all, letter){
905                                 return letter.toUpperCase();
906                         });
907
908                         ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];
909
910                         // From the awesome hack by Dean Edwards
911                         // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
912
913                         // If we're not dealing with a regular pixel number
914                         // but a number that has a weird ending, we need to convert it to pixels
915                         if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
916                                 // Remember the original values
917                                 var style = elem.style.left, runtimeStyle = elem.runtimeStyle.left;
918
919                                 // Put in the new values to get a computed value out
920                                 elem.runtimeStyle.left = elem.currentStyle.left;
921                                 elem.style.left = ret || 0;
922                                 ret = elem.style.pixelLeft + "px";
923
924                                 // Revert the changed values
925                                 elem.style.left = style;
926                                 elem.runtimeStyle.left = runtimeStyle;
927                         }
928                 }
929
930                 return ret;
931         },
932         
933         clean: function( elems, context ) {
934                 var ret = [];
935                 context = context || document;
936                 // !context.createElement fails in IE with an error but returns typeof 'object'
937                 if (typeof context.createElement == 'undefined') 
938                         context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
939
940                 jQuery.each(elems, function(i, elem){
941                         if ( !elem )
942                                 return;
943
944                         if ( elem.constructor == Number )
945                                 elem += '';
946                         
947                         // Convert html string into DOM nodes
948                         if ( typeof elem == "string" ) {
949                                 // Fix "XHTML"-style tags in all browsers
950                                 elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
951                                         return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
952                                                 all :
953                                                 front + "></" + tag + ">";
954                                 });
955
956                                 // Trim whitespace, otherwise indexOf won't work as expected
957                                 var tags = jQuery.trim( elem ).toLowerCase(), div = context.createElement("div");
958
959                                 var wrap =
960                                         // option or optgroup
961                                         !tags.indexOf("<opt") &&
962                                         [ 1, "<select multiple='multiple'>", "</select>" ] ||
963                                         
964                                         !tags.indexOf("<leg") &&
965                                         [ 1, "<fieldset>", "</fieldset>" ] ||
966                                         
967                                         tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
968                                         [ 1, "<table>", "</table>" ] ||
969                                         
970                                         !tags.indexOf("<tr") &&
971                                         [ 2, "<table><tbody>", "</tbody></table>" ] ||
972                                         
973                                         // <thead> matched above
974                                         (!tags.indexOf("<td") || !tags.indexOf("<th")) &&
975                                         [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||
976                                         
977                                         !tags.indexOf("<col") &&
978                                         [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||
979
980                                         // IE can't serialize <link> and <script> tags normally
981                                         jQuery.browser.msie &&
982                                         [ 1, "div<div>", "</div>" ] ||
983                                         
984                                         [ 0, "", "" ];
985
986                                 // Go to html and back, then peel off extra wrappers
987                                 div.innerHTML = wrap[1] + elem + wrap[2];
988                                 
989                                 // Move to the right depth
990                                 while ( wrap[0]-- )
991                                         div = div.lastChild;
992                                 
993                                 // Remove IE's autoinserted <tbody> from table fragments
994                                 if ( jQuery.browser.msie ) {
995                                         
996                                         // String was a <table>, *may* have spurious <tbody>
997                                         var tbody = !tags.indexOf("<table") && tags.indexOf("<tbody") < 0 ?
998                                                 div.firstChild && div.firstChild.childNodes :
999                                                 
1000                                                 // String was a bare <thead> or <tfoot>
1001                                                 wrap[1] == "<table>" && tags.indexOf("<tbody") < 0 ?
1002                                                         div.childNodes :
1003                                                         [];
1004                                 
1005                                         for ( var j = tbody.length - 1; j >= 0 ; --j )
1006                                                 if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
1007                                                         tbody[ j ].parentNode.removeChild( tbody[ j ] );
1008                                         
1009                                         // IE completely kills leading whitespace when innerHTML is used        
1010                                         if ( /^\s/.test( elem ) )       
1011                                                 div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
1012                                 
1013                                 }
1014                                 
1015                                 elem = jQuery.makeArray( div.childNodes );
1016                         }
1017
1018                         if ( elem.length === 0 && (!jQuery.nodeName( elem, "form" ) && !jQuery.nodeName( elem, "select" )) )
1019                                 return;
1020
1021                         if ( elem[0] == undefined || jQuery.nodeName( elem, "form" ) || elem.options )
1022                                 ret.push( elem );
1023
1024                         else
1025                                 ret = jQuery.merge( ret, elem );
1026
1027                 });
1028
1029                 return ret;
1030         },
1031         
1032         attr: function( elem, name, value ) {
1033                 // don't set attributes on text and comment nodes
1034                 if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
1035                         return undefined;
1036
1037                 var fix = jQuery.isXMLDoc( elem ) ?
1038                         {} :
1039                         jQuery.props;
1040
1041                 // Safari mis-reports the default selected property of a hidden option
1042                 // Accessing the parent's selectedIndex property fixes it
1043                 if ( name == "selected" && jQuery.browser.safari )
1044                         elem.parentNode.selectedIndex;
1045                 
1046                 // Certain attributes only work when accessed via the old DOM 0 way
1047                 if ( fix[ name ] ) {
1048                         if ( value != undefined )
1049                                 elem[ fix[ name ] ] = value;
1050
1051                         return elem[ fix[ name ] ];
1052
1053                 } else if ( jQuery.browser.msie && name == "style" )
1054                         return jQuery.attr( elem.style, "cssText", value );
1055
1056                 else if ( value == undefined && jQuery.browser.msie && jQuery.nodeName( elem, "form" ) && (name == "action" || name == "method") )
1057                         return elem.getAttributeNode( name ).nodeValue;
1058
1059                 // IE elem.getAttribute passes even for style
1060                 else if ( elem.tagName ) {
1061
1062                         if ( value != undefined ) {
1063                                 // We can't allow the type property to be changed (since it causes problems in IE)
1064                                 if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
1065                                         throw "type property can't be changed";
1066
1067                                 // convert the value to a string (all browsers do this but IE) see #1070
1068                                 elem.setAttribute( name, "" + value );
1069                         }
1070
1071                         if ( jQuery.browser.msie && /href|src/.test( name ) && !jQuery.isXMLDoc( elem ) ) 
1072                                 return elem.getAttribute( name, 2 );
1073
1074                         return elem.getAttribute( name );
1075
1076                 // elem is actually elem.style ... set the style
1077                 } else {
1078                         // IE actually uses filters for opacity
1079                         if ( name == "opacity" && jQuery.browser.msie ) {
1080                                 if ( value != undefined ) {
1081                                         // IE has trouble with opacity if it does not have layout
1082                                         // Force it by setting the zoom level
1083                                         elem.zoom = 1; 
1084         
1085                                         // Set the alpha filter to set the opacity
1086                                         elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
1087                                                 (parseFloat( value ).toString() == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
1088                                 }
1089         
1090                                 return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
1091                                         (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100).toString() :
1092                                         "";
1093                         }
1094
1095                         name = name.replace(/-([a-z])/ig, function(all, letter){
1096                                 return letter.toUpperCase();
1097                         });
1098
1099                         if ( value != undefined )
1100                                 elem[ name ] = value;
1101
1102                         return elem[ name ];
1103                 }
1104         },
1105         
1106         trim: function( text ) {
1107                 return (text || "").replace( /^\s+|\s+$/g, "" );
1108         },
1109
1110         makeArray: function( array ) {
1111                 var ret = [];
1112
1113                 if( array != undefined ){
1114                         var i = array.length;
1115                         //the window, strings and functions also have 'length'
1116                         if( i != null && !array.split && array != window && !array.call )
1117                                 while( i )
1118                                         ret[--i] = array[i];
1119                         else
1120                                 ret[0] = array;
1121                 }
1122
1123                 return ret;
1124         },
1125
1126         inArray: function( elem, array ) {
1127                 for ( var i = 0, length = array.length; i < length; i++ )
1128                         if ( array[ i ] == elem )
1129                                 return i;
1130
1131                 return -1;
1132         },
1133
1134         merge: function( first, second ) {
1135                 // We have to loop this way because IE & Opera overwrite the length
1136                 // expando of getElementsByTagName
1137
1138                 // Also, we need to make sure that the correct elements are being returned
1139                 // (IE returns comment nodes in a '*' query)
1140                 if ( jQuery.browser.msie ) {
1141                         for ( var i = 0; second[ i ]; i++ )
1142                                 if ( second[ i ].nodeType != 8 )
1143                                         first.push( second[ i ] );
1144
1145                 } else
1146                         for ( var i = 0; second[ i ]; i++ )
1147                                 first.push( second[ i ] );
1148
1149                 return first;
1150         },
1151
1152         unique: function( array ) {
1153                 var ret = [], done = {};
1154
1155                 try {
1156
1157                         for ( var i = 0, length = array.length; i < length; i++ ) {
1158                                 var id = jQuery.data( array[ i ] );
1159
1160                                 if ( !done[ id ] ) {
1161                                         done[ id ] = true;
1162                                         ret.push( array[ i ] );
1163                                 }
1164                         }
1165
1166                 } catch( e ) {
1167                         ret = array;
1168                 }
1169
1170                 return ret;
1171         },
1172
1173         grep: function( elems, callback, inv ) {
1174                 var ret = [];
1175
1176                 // Go through the array, only saving the items
1177                 // that pass the validator function
1178                 for ( var i = 0, length = elems.length; i < length; i++ )
1179                         if ( !inv && callback( elems[ i ], i ) || inv && !callback( elems[ i ], i ) )
1180                                 ret.push( elems[ i ] );
1181
1182                 return ret;
1183         },
1184
1185         map: function( elems, callback ) {
1186                 var ret = [];
1187
1188                 // Go through the array, translating each of the items to their
1189                 // new value (or values).
1190                 for ( var i = 0, length = elems.length; i < length; i++ ) {
1191                         var value = callback( elems[ i ], i );
1192
1193                         if ( value !== null && value != undefined ) {
1194                                 if ( value.constructor != Array )
1195                                         value = [ value ];
1196
1197                                 ret = ret.concat( value );
1198                         }
1199                 }
1200
1201                 return ret;
1202         }
1203 });
1204
1205 var userAgent = navigator.userAgent.toLowerCase();
1206
1207 // Figure out what browser is being used
1208 jQuery.browser = {
1209         version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1],
1210         safari: /webkit/.test( userAgent ),
1211         opera: /opera/.test( userAgent ),
1212         msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
1213         mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
1214 };
1215
1216 var styleFloat = jQuery.browser.msie ?
1217         "styleFloat" :
1218         "cssFloat";
1219         
1220 jQuery.extend({
1221         // Check to see if the W3C box model is being used
1222         boxModel: !jQuery.browser.msie || document.compatMode == "CSS1Compat",
1223         
1224         props: {
1225                 "for": "htmlFor",
1226                 "class": "className",
1227                 "float": styleFloat,
1228                 cssFloat: styleFloat,
1229                 styleFloat: styleFloat,
1230                 innerHTML: "innerHTML",
1231                 className: "className",
1232                 value: "value",
1233                 disabled: "disabled",
1234                 checked: "checked",
1235                 readonly: "readOnly",
1236                 selected: "selected",
1237                 maxlength: "maxLength",
1238                 selectedIndex: "selectedIndex",
1239                 defaultValue: "defaultValue",
1240                 tagName: "tagName",
1241                 nodeName: "nodeName"
1242         }
1243 });
1244
1245 jQuery.each({
1246         parent: function(elem){return elem.parentNode;},
1247         parents: function(elem){return jQuery.dir(elem,"parentNode");},
1248         next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
1249         prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
1250         nextAll: function(elem){return jQuery.dir(elem,"nextSibling");},
1251         prevAll: function(elem){return jQuery.dir(elem,"previousSibling");},
1252         siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},
1253         children: function(elem){return jQuery.sibling(elem.firstChild);},
1254         contents: function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}
1255 }, function(name, fn){
1256         jQuery.fn[ name ] = function( selector ) {
1257                 var ret = jQuery.map( this, fn );
1258
1259                 if ( selector && typeof selector == "string" )
1260                         ret = jQuery.multiFilter( selector, ret );
1261
1262                 return this.pushStack( jQuery.unique( ret ) );
1263         };
1264 });
1265
1266 jQuery.each({
1267         appendTo: "append",
1268         prependTo: "prepend",
1269         insertBefore: "before",
1270         insertAfter: "after",
1271         replaceAll: "replaceWith"
1272 }, function(name, original){
1273         jQuery.fn[ name ] = function() {
1274                 var args = arguments;
1275
1276                 return this.each(function(){
1277                         for ( var i = 0, length = args.length; i < length; i++ )
1278                                 jQuery( args[ i ] )[ original ]( this );
1279                 });
1280         };
1281 });
1282
1283 jQuery.each({
1284         removeAttr: function( name ) {
1285                 jQuery.attr( this, name, "" );
1286                 if (this.nodeType == 1) 
1287                         this.removeAttribute( name );
1288         },
1289
1290         addClass: function( classNames ) {
1291                 jQuery.className.add( this, classNames );
1292         },
1293
1294         removeClass: function( classNames ) {
1295                 jQuery.className.remove( this, classNames );
1296         },
1297
1298         toggleClass: function( classNames ) {
1299                 jQuery.className[ jQuery.className.has( this, classNames ) ? "remove" : "add" ]( this, classNames );
1300         },
1301
1302         remove: function( selector ) {
1303                 if ( !selector || jQuery.filter( selector, [ this ] ).r.length ) {
1304                         // Prevent memory leaks
1305                         jQuery( "*", this ).add(this).each(function(){
1306                                 jQuery.event.remove(this);
1307                                 jQuery.removeData(this);
1308                         });
1309                         if (this.parentNode)
1310                                 this.parentNode.removeChild( this );
1311                 }
1312         },
1313
1314         empty: function() {
1315                 // Remove element nodes and prevent memory leaks
1316                 jQuery( ">*", this ).remove();
1317                 
1318                 // Remove any remaining nodes
1319                 while ( this.firstChild )
1320                         this.removeChild( this.firstChild );
1321         }
1322 }, function(name, fn){
1323         jQuery.fn[ name ] = function(){
1324                 return this.each( fn, arguments );
1325         };
1326 });
1327
1328 jQuery.each([ "Height", "Width" ], function(i, name){
1329         var type = name.toLowerCase();
1330         
1331         jQuery.fn[ type ] = function( size ) {
1332                 // Get window width or height
1333                 return this[0] == window ?
1334                         // Opera reports document.body.client[Width/Height] properly in both quirks and standards
1335                         jQuery.browser.opera && document.body[ "client" + name ] || 
1336                         
1337                         // Safari reports inner[Width/Height] just fine (Mozilla and Opera include scroll bar widths)
1338                         jQuery.browser.safari && window[ "inner" + name ] ||
1339                         
1340                         // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
1341                         document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] || document.body[ "client" + name ] :
1342                 
1343                         // Get document width or height
1344                         this[0] == document ?
1345                                 // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
1346                                 Math.max( 
1347                                         Math.max(document.body["scroll" + name], document.documentElement["scroll" + name]), 
1348                                         Math.max(document.body["offset" + name], document.documentElement["offset" + name]) 
1349                                 ) :
1350
1351                                 // Get or set width or height on the element
1352                                 size == undefined ?
1353                                         // Get width or height on the element
1354                                         (this.length ? jQuery.css( this[0], type ) : null) :
1355
1356                                         // Set the width or height on the element (default to pixels if value is unitless)
1357                                         this.css( type, size.constructor == String ? size : size + "px" );
1358         };
1359 });