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