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