2 * jQuery @VERSION - New Wave Javascript
4 * Copyright (c) 2008 John Resig (jquery.com)
5 * Dual licensed under the MIT (MIT-LICENSE.txt)
6 * and GPL (GPL-LICENSE.txt) licenses.
12 // Map over jQuery in case of overwrite
13 var _jQuery = window.jQuery,
14 // Map over the $ in case of overwrite
17 var jQuery = window.jQuery = window.$ = function( selector, context ) {
18 // The jQuery object is actually just the init constructor 'enhanced'
19 return new jQuery.fn.init( selector, context );
22 // A simple way to check for HTML strings or ID strings
23 // (both of which we optimize for)
24 var quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,
26 // Is it a simple selector
27 isSimple = /^.[^:#\[\.]*$/;
29 jQuery.fn = jQuery.prototype = {
30 init: function( selector, context ) {
31 // Make sure that a selection was provided
32 selector = selector || document;
34 // Handle $(DOMElement)
35 if ( selector.nodeType ) {
40 // Handle HTML strings
41 if ( typeof selector == "string" ) {
42 // Are we dealing with HTML string or an ID?
43 var match = quickExpr.exec( selector );
45 // Verify a match, and that no context was specified for #id
46 if ( match && (match[1] || !context) ) {
48 // HANDLE: $(html) -> $(array)
50 selector = jQuery.clean( [ match[1] ], context );
54 var elem = document.getElementById( match[3] );
56 // Make sure an element was located
58 // Handle the case where IE and Opera return items
59 // by name instead of ID
60 if ( elem.id != match[3] )
61 return jQuery().find( selector );
63 // Otherwise, we inject the element directly into the jQuery object
64 return jQuery( elem );
69 // HANDLE: $(expr, [context])
70 // (which is just equivalent to: $(content).find(expr)
72 return jQuery( context ).find( selector );
74 // HANDLE: $(function)
75 // Shortcut for document ready
76 } else if ( jQuery.isFunction( selector ) )
77 return jQuery( document )[ jQuery.fn.ready ? "ready" : "load" ]( selector );
79 return this.setArray(jQuery.makeArray(selector));
82 // The current version of jQuery being used
85 // The number of elements contained in the matched element set
90 // The number of elements contained in the matched element set
93 // Get the Nth element in the matched element set OR
94 // Get the whole matched element set as a clean array
95 get: function( num ) {
96 return num == undefined ?
98 // Return a 'clean' array
99 jQuery.makeArray( this ) :
101 // Return just the object
105 // Take an array of elements and push it onto the stack
106 // (returning the new matched element set)
107 pushStack: function( elems ) {
108 // Build a new jQuery matched element set
109 var ret = jQuery( elems );
111 // Add the old object onto the stack (as a reference)
112 ret.prevObject = this;
114 // Return the newly-formed element set
118 // Force the current matched set of elements to become
119 // the specified array of elements (destroying the stack in the process)
120 // You should use pushStack() in order to do this, but maintain the stack
121 setArray: function( elems ) {
122 // Resetting the length to 0, then using the native Array push
123 // is a super-fast way to populate an object with array-like properties
125 Array.prototype.push.apply( this, elems );
130 // Execute a callback for every element in the matched set.
131 // (You can seed the arguments with an array of args, but this is
132 // only used internally.)
133 each: function( callback, args ) {
134 return jQuery.each( this, callback, args );
137 // Determine the position of an element within
138 // the matched set of elements
139 index: function( elem ) {
142 // Locate the position of the desired element
143 return jQuery.inArray(
144 // If it receives a jQuery object, the first element is used
145 elem && elem.jquery ? elem[0] : elem
149 attr: function( name, value, type ) {
152 // Look for the case where we're accessing a style value
153 if ( name.constructor == String )
154 if ( value == undefined )
155 return this.length && jQuery[ type || "attr" ]( this[0], name ) || undefined;
159 options[ name ] = value;
162 // Check to see if we're setting style values
163 return this.each(function(i){
164 // Set all the styles
165 for ( name in options )
170 name, jQuery.prop( this, options[ name ], type, i, name )
175 css: function( key, value ) {
176 // ignore negative width and height values
177 if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 )
179 return this.attr( key, value, "curCSS" );
182 text: function( text ) {
183 if ( typeof text != "object" && text != null )
184 return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );
188 jQuery.each( text || this, function(){
189 jQuery.each( this.childNodes, function(){
190 if ( this.nodeType != 8 )
191 ret += this.nodeType != 1 ?
193 jQuery.fn.text( [ this ] );
200 wrapAll: function( html ) {
202 // The elements to wrap the target around
203 jQuery( html, this[0].ownerDocument )
205 .insertBefore( this[0] )
209 while ( elem.firstChild )
210 elem = elem.firstChild;
219 wrapInner: function( html ) {
220 return this.each(function(){
221 jQuery( this ).contents().wrapAll( html );
225 wrap: function( html ) {
226 return this.each(function(){
227 jQuery( this ).wrapAll( html );
232 return this.domManip(arguments, true, false, function(elem){
233 if (this.nodeType == 1)
234 this.appendChild( elem );
238 prepend: function() {
239 return this.domManip(arguments, true, true, function(elem){
240 if (this.nodeType == 1)
241 this.insertBefore( elem, this.firstChild );
246 return this.domManip(arguments, false, false, function(elem){
247 this.parentNode.insertBefore( elem, this );
252 return this.domManip(arguments, false, true, function(elem){
253 this.parentNode.insertBefore( elem, this.nextSibling );
258 return this.prevObject || jQuery( [] );
261 find: function( selector ) {
262 var elems = jQuery.map(this, function(elem){
263 return jQuery.find( selector, elem );
266 return this.pushStack( /[^+>] [^+>]/.test( selector ) || selector.indexOf("..") > -1 ?
267 jQuery.unique( elems ) :
271 clone: function( events ) {
273 var ret = this.map(function(){
274 if ( jQuery.browser.msie && !jQuery.isXMLDoc(this) ) {
275 // IE copies events bound via attachEvent when
276 // using cloneNode. Calling detachEvent on the
277 // clone will also remove the events from the orignal
278 // In order to get around this, we use innerHTML.
279 // Unfortunately, this means some modifications to
280 // attributes in IE that are actually only stored
281 // as properties will not be copied (such as the
282 // the name attribute on an input).
283 var clone = this.cloneNode(true),
284 container = document.createElement("div");
285 container.appendChild(clone);
286 return jQuery.clean([container.innerHTML])[0];
288 return this.cloneNode(true);
291 // Need to set the expando to null on the cloned set if it exists
292 // removeData doesn't work here, IE removes it from the original as well
293 // this is primarily for IE but the data expando shouldn't be copied over in any browser
294 var clone = ret.find("*").andSelf().each(function(){
295 if ( this[ expando ] != undefined )
296 this[ expando ] = null;
299 // Copy the events from the original to the clone
300 if ( events === true )
301 this.find("*").andSelf().each(function(i){
302 if (this.nodeType == 3)
304 var events = jQuery.data( this, "events" );
306 for ( var type in events )
307 for ( var handler in events[ type ] )
308 jQuery.event.add( clone[ i ], type, events[ type ][ handler ], events[ type ][ handler ].data );
311 // Return the cloned set
315 filter: function( selector ) {
316 return this.pushStack(
317 jQuery.isFunction( selector ) &&
318 jQuery.grep(this, function(elem, i){
319 return selector.call( elem, i );
322 jQuery.multiFilter( selector, this ) );
325 not: function( selector ) {
326 if ( selector.constructor == String )
327 // test special case where just one selector is passed in
328 if ( isSimple.test( selector ) )
329 return this.pushStack( jQuery.multiFilter( selector, this, true ) );
331 selector = jQuery.multiFilter( selector, this );
333 var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
334 return this.filter(function() {
335 return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector;
339 add: function( selector ) {
340 return !selector ? this : this.pushStack( jQuery.merge(
342 selector.constructor == String ?
343 jQuery( selector ).get() :
344 selector.length != undefined && (!selector.nodeName || jQuery.nodeName(selector, "form")) ?
345 selector : [selector] ) );
348 is: function( selector ) {
349 return !!selector && jQuery.multiFilter( selector, this ).length > 0;
352 hasClass: function( selector ) {
353 return this.is( "." + selector );
356 val: function( value ) {
357 if ( value == undefined ) {
362 // We need to handle select boxes special
363 if ( jQuery.nodeName( elem, "select" ) ) {
364 var index = elem.selectedIndex,
366 options = elem.options,
367 one = elem.type == "select-one";
369 // Nothing was selected
373 // Loop through all the selected options
374 for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
375 var option = options[ i ];
377 if ( option.selected ) {
378 // Get the specifc value for the option
379 value = jQuery.browser.msie && !option.attributes.value.specified ? option.text : option.value;
381 // We don't need an array for one selects
385 // Multi-Selects return an array
386 values.push( value );
392 // Everything else, we just grab the value
394 return (this[0].value || "").replace(/\r/g, "");
401 return this.each(function(){
402 if ( this.nodeType != 1 )
405 if ( value.constructor == Array && /radio|checkbox/.test( this.type ) )
406 this.checked = (jQuery.inArray(this.value, value) >= 0 ||
407 jQuery.inArray(this.name, value) >= 0);
409 else if ( jQuery.nodeName( this, "select" ) ) {
410 var values = value.constructor == Array ?
414 jQuery( "option", this ).each(function(){
415 this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
416 jQuery.inArray( this.text, values ) >= 0);
419 if ( !values.length )
420 this.selectedIndex = -1;
427 html: function( value ) {
428 return value == undefined ?
432 this.empty().append( value );
435 replaceWith: function( value ) {
436 return this.after( value ).remove();
440 return this.slice( i, i + 1 );
444 return this.pushStack( Array.prototype.slice.apply( this, arguments ) );
447 map: function( callback ) {
448 return this.pushStack( jQuery.map(this, function(elem, i){
449 return callback.call( elem, i, elem );
453 andSelf: function() {
454 return this.add( this.prevObject );
457 data: function( key, value ){
458 var parts = key.split(".");
459 parts[1] = parts[1] ? "." + parts[1] : "";
461 if ( value === undefined ) {
462 var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]);
464 if ( data === undefined && this.length )
465 data = jQuery.data( this[0], key );
467 return data === undefined && parts[1] ?
468 this.data( parts[0] ) :
471 return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function(){
472 jQuery.data( this, key, value );
476 removeData: function( key ){
477 return this.each(function(){
478 jQuery.removeData( this, key );
482 domManip: function( args, table, reverse, callback ) {
483 var clone = this.length > 1, elems;
485 return this.each(function(){
487 elems = jQuery.clean( args, this.ownerDocument );
495 if ( table && jQuery.nodeName( this, "table" ) && jQuery.nodeName( elems[0], "tr" ) )
496 obj = this.getElementsByTagName("tbody")[0] || this.appendChild( this.ownerDocument.createElement("tbody") );
498 var scripts = jQuery( [] );
500 jQuery.each(elems, function(){
502 jQuery( this ).clone( true )[0] :
505 // execute all scripts after the elements have been injected
506 if ( jQuery.nodeName( elem, "script" ) ) {
507 scripts = scripts.add( elem );
509 // Remove any inner scripts for later evaluation
510 if ( elem.nodeType == 1 )
511 scripts = scripts.add( jQuery( "script", elem ).remove() );
513 // Inject the elements into the document
514 callback.call( obj, elem );
518 scripts.each( evalScript );
523 // Give the init function the jQuery prototype for later instantiation
524 jQuery.fn.init.prototype = jQuery.fn;
526 function evalScript( i, elem ) {
535 jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
537 if ( elem.parentNode )
538 elem.parentNode.removeChild( elem );
545 jQuery.extend = jQuery.fn.extend = function() {
546 // copy reference to target object
547 var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options;
549 // Handle a deep copy situation
550 if ( target.constructor == Boolean ) {
552 target = arguments[1] || {};
553 // skip the boolean and the target
557 // Handle case when target is a string or something (possible in deep copy)
558 if ( typeof target != "object" && typeof target != "function" )
561 // extend jQuery itself if only one argument is passed
567 for ( ; i < length; i++ )
568 // Only deal with non-null/undefined values
569 if ( (options = arguments[ i ]) != null )
570 // Extend the base object
571 for ( var name in options ) {
572 var src = target[ name ], copy = options[ name ];
574 // Prevent never-ending loop
575 if ( target === copy )
578 // Recurse if we're merging object values
579 if ( deep && copy && typeof copy == "object" && src && !copy.nodeType )
580 target[ name ] = jQuery.extend( deep, src, copy );
582 // Don't bring in undefined values
583 else if ( copy !== undefined )
584 target[ name ] = copy;
588 // Return the modified object
592 var expando = "jQuery" + now(), uuid = 0, windowData = {},
594 // exclude the following css properties to add px
595 exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i,
596 // cache getComputedStyle
597 getComputedStyle = document.defaultView && document.defaultView.getComputedStyle;
600 noConflict: function( deep ) {
604 window.jQuery = _jQuery;
609 // See test/unit/core.js for details concerning this function.
610 isFunction: function( fn ) {
611 return !!fn && typeof fn != "string" && !fn.nodeName &&
612 fn.constructor != Array && /function/i.test( fn + "" );
615 // check if an element is in a (or is an) XML document
616 isXMLDoc: function( elem ) {
617 return elem.documentElement && !elem.body ||
618 elem.tagName && elem.ownerDocument && !elem.ownerDocument.body;
621 // Evalulates a script in a global context
622 globalEval: function( data ) {
623 data = jQuery.trim( data );
626 // Inspired by code by Andrea Giammarchi
627 // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
628 var head = document.getElementsByTagName("head")[0] || document.documentElement,
629 script = document.createElement("script");
631 script.type = "text/javascript";
632 if ( jQuery.browser.msie )
635 script.appendChild( document.createTextNode( data ) );
637 head.appendChild( script );
638 head.removeChild( script );
642 nodeName: function( elem, name ) {
643 return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
648 data: function( elem, name, data ) {
649 elem = elem == window ?
653 var id = elem[ expando ];
655 // Compute a unique ID for the element
657 id = elem[ expando ] = ++uuid;
659 // Only generate the data cache if we're
660 // trying to access or manipulate it
661 if ( name && !jQuery.cache[ id ] )
662 jQuery.cache[ id ] = {};
664 // Prevent overriding the named cache with undefined values
665 if ( data !== undefined )
666 jQuery.cache[ id ][ name ] = data;
668 // Return the named cache data, or the ID for the element
670 jQuery.cache[ id ][ name ] :
674 removeData: function( elem, name ) {
675 elem = elem == window ?
679 var id = elem[ expando ];
681 // If we want to remove a specific section of the element's data
683 if ( jQuery.cache[ id ] ) {
684 // Remove the section of cache data
685 delete jQuery.cache[ id ][ name ];
687 // If we've removed all the data, remove the element's cache
690 for ( name in jQuery.cache[ id ] )
694 jQuery.removeData( elem );
697 // Otherwise, we want to remove all of the element's data
699 // Clean up the element expando
701 delete elem[ expando ];
703 // IE has trouble directly removing the expando
704 // but it's ok with using removeAttribute
705 if ( elem.removeAttribute )
706 elem.removeAttribute( expando );
709 // Completely remove the data cache
710 delete jQuery.cache[ id ];
714 // args is for internal usage only
715 each: function( object, callback, args ) {
716 var name, i = 0, length = object.length;
719 if ( length == undefined ) {
720 for ( name in object )
721 if ( callback.apply( object[ name ], args ) === false )
724 for ( ; i < length; )
725 if ( callback.apply( object[ i++ ], args ) === false )
728 // A special, fast, case for the most common use of each
730 if ( length == undefined ) {
731 for ( name in object )
732 if ( callback.call( object[ name ], name, object[ name ] ) === false )
735 for ( var value = object[0];
736 i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
742 prop: function( elem, value, type, i, name ) {
743 // Handle executable functions
744 if ( jQuery.isFunction( value ) )
745 value = value.call( elem, i );
747 // Handle passing in a number to a CSS property
748 return value && value.constructor == Number && type == "curCSS" && !exclude.test( name ) ?
754 // internal only, use addClass("class")
755 add: function( elem, classNames ) {
756 jQuery.each((classNames || "").split(/\s+/), function(i, className){
757 if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
758 elem.className += (elem.className ? " " : "") + className;
762 // internal only, use removeClass("class")
763 remove: function( elem, classNames ) {
764 if (elem.nodeType == 1)
765 elem.className = classNames != undefined ?
766 jQuery.grep(elem.className.split(/\s+/), function(className){
767 return !jQuery.className.has( classNames, className );
772 // internal only, use is(".class")
773 has: function( elem, className ) {
774 return jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
778 // A method for quickly swapping in/out CSS properties to get correct calculations
779 swap: function( elem, options, callback ) {
781 // Remember the old values, and insert the new ones
782 for ( var name in options ) {
783 old[ name ] = elem.style[ name ];
784 elem.style[ name ] = options[ name ];
787 callback.call( elem );
789 // Revert the old values
790 for ( var name in options )
791 elem.style[ name ] = old[ name ];
794 css: function( elem, name, force ) {
795 if ( name == "width" || name == "height" ) {
796 var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ];
799 val = name == "width" ? elem.offsetWidth : elem.offsetHeight;
800 var padding = 0, border = 0;
801 jQuery.each( which, function() {
802 padding += parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0;
803 border += parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0;
805 val -= Math.round(padding + border);
808 if ( jQuery(elem).is(":visible") )
811 jQuery.swap( elem, props, getWH );
813 return Math.max(0, val);
816 return jQuery.curCSS( elem, name, force );
819 curCSS: function( elem, name, force ) {
820 var ret, style = elem.style;
822 // A helper method for determining if an element's values are broken
823 function color( elem ) {
824 if ( !jQuery.browser.safari )
827 // getComputedStyle is cached
828 var ret = getComputedStyle( elem, null );
829 return !ret || ret.getPropertyValue("color") == "";
832 // We need to handle opacity special in IE
833 if ( name == "opacity" && jQuery.browser.msie ) {
834 ret = jQuery.attr( style, "opacity" );
840 // Opera sometimes will give the wrong display answer, this fixes it, see #2037
841 if ( jQuery.browser.opera && name == "display" ) {
842 var save = style.outline;
843 style.outline = "0 solid black";
844 style.outline = save;
847 // Make sure we're using the right name for getting the float value
848 if ( name.match( /float/i ) )
851 if ( !force && style && style[ name ] )
854 else if ( getComputedStyle ) {
856 // Only "float" is needed here
857 if ( name.match( /float/i ) )
860 name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();
862 var computedStyle = getComputedStyle( elem, null );
864 if ( computedStyle && !color( elem ) )
865 ret = computedStyle.getPropertyValue( name );
867 // If the element isn't reporting its values properly in Safari
868 // then some display: none elements are involved
870 var swap = [], stack = [], a = elem, i = 0;
872 // Locate all of the parent display: none elements
873 for ( ; a && color(a); a = a.parentNode )
876 // Go through and make them visible, but in reverse
877 // (It would be better if we knew the exact display type that they had)
878 for ( ; i < stack.length; i++ )
879 if ( color( stack[ i ] ) ) {
880 swap[ i ] = stack[ i ].style.display;
881 stack[ i ].style.display = "block";
884 // Since we flip the display style, we have to handle that
885 // one special, otherwise get the value
886 ret = name == "display" && swap[ stack.length - 1 ] != null ?
888 ( computedStyle && computedStyle.getPropertyValue( name ) ) || "";
890 // Finally, revert the display styles back
891 for ( i = 0; i < swap.length; i++ )
892 if ( swap[ i ] != null )
893 stack[ i ].style.display = swap[ i ];
896 // We should always get a number back from opacity
897 if ( name == "opacity" && ret == "" )
900 } else if ( elem.currentStyle ) {
901 var camelCase = name.replace(/\-(\w)/g, function(all, letter){
902 return letter.toUpperCase();
905 ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];
907 // From the awesome hack by Dean Edwards
908 // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
910 // If we're not dealing with a regular pixel number
911 // but a number that has a weird ending, we need to convert it to pixels
912 if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
913 // Remember the original values
914 var left = style.left, rsLeft = elem.runtimeStyle.left;
916 // Put in the new values to get a computed value out
917 elem.runtimeStyle.left = elem.currentStyle.left;
918 style.left = ret || 0;
919 ret = style.pixelLeft + "px";
921 // Revert the changed values
923 elem.runtimeStyle.left = rsLeft;
930 clean: function( elems, context ) {
932 context = context || document;
933 // !context.createElement fails in IE with an error but returns typeof 'object'
934 if (typeof context.createElement == 'undefined')
935 context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
937 jQuery.each(elems, function(i, elem){
941 if ( elem.constructor == Number )
944 // Convert html string into DOM nodes
945 if ( typeof elem == "string" ) {
946 // Fix "XHTML"-style tags in all browsers
947 elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
948 return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ?
950 front + "></" + tag + ">";
953 // Trim whitespace, otherwise indexOf won't work as expected
954 var tags = jQuery.trim( elem ).toLowerCase(), div = context.createElement("div");
957 // option or optgroup
958 !tags.indexOf("<opt") &&
959 [ 1, "<select multiple='multiple'>", "</select>" ] ||
961 !tags.indexOf("<leg") &&
962 [ 1, "<fieldset>", "</fieldset>" ] ||
964 tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
965 [ 1, "<table>", "</table>" ] ||
967 !tags.indexOf("<tr") &&
968 [ 2, "<table><tbody>", "</tbody></table>" ] ||
970 // <thead> matched above
971 (!tags.indexOf("<td") || !tags.indexOf("<th")) &&
972 [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||
974 !tags.indexOf("<col") &&
975 [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||
977 // IE can't serialize <link> and <script> tags normally
978 jQuery.browser.msie &&
979 [ 1, "div<div>", "</div>" ] ||
983 // Go to html and back, then peel off extra wrappers
984 div.innerHTML = wrap[1] + elem + wrap[2];
986 // Move to the right depth
990 // Remove IE's autoinserted <tbody> from table fragments
991 if ( jQuery.browser.msie ) {
993 // String was a <table>, *may* have spurious <tbody>
994 var tbody = !tags.indexOf("<table") && tags.indexOf("<tbody") < 0 ?
995 div.firstChild && div.firstChild.childNodes :
997 // String was a bare <thead> or <tfoot>
998 wrap[1] == "<table>" && tags.indexOf("<tbody") < 0 ?
1002 for ( var j = tbody.length - 1; j >= 0 ; --j )
1003 if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
1004 tbody[ j ].parentNode.removeChild( tbody[ j ] );
1006 // IE completely kills leading whitespace when innerHTML is used
1007 if ( /^\s/.test( elem ) )
1008 div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
1012 elem = jQuery.makeArray( div.childNodes );
1015 if ( elem.length === 0 && (!jQuery.nodeName( elem, "form" ) && !jQuery.nodeName( elem, "select" )) )
1018 if ( elem[0] == undefined || jQuery.nodeName( elem, "form" ) || elem.options )
1022 ret = jQuery.merge( ret, elem );
1029 attr: function( elem, name, value ) {
1030 // don't set attributes on text and comment nodes
1031 if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
1034 var fix = jQuery.isXMLDoc( elem ) ?
1038 // Safari mis-reports the default selected property of a hidden option
1039 // Accessing the parent's selectedIndex property fixes it
1040 if ( name == "selected" && jQuery.browser.safari )
1041 elem.parentNode.selectedIndex;
1043 // Certain attributes only work when accessed via the old DOM 0 way
1044 if ( fix[ name ] ) {
1045 if ( value != undefined )
1046 elem[ fix[ name ] ] = value;
1048 return elem[ fix[ name ] ];
1050 } else if ( jQuery.browser.msie && name == "style" )
1051 return jQuery.attr( elem.style, "cssText", value );
1053 else if ( value == undefined && jQuery.browser.msie && jQuery.nodeName( elem, "form" ) && (name == "action" || name == "method") )
1054 return elem.getAttributeNode( name ).nodeValue;
1056 // IE elem.getAttribute passes even for style
1057 else if ( elem.tagName ) {
1059 if ( value != undefined ) {
1060 // We can't allow the type property to be changed (since it causes problems in IE)
1061 if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
1062 throw "type property can't be changed";
1064 // convert the value to a string (all browsers do this but IE) see #1070
1065 elem.setAttribute( name, "" + value );
1068 if ( jQuery.browser.msie && /href|src/.test( name ) && !jQuery.isXMLDoc( elem ) )
1069 return elem.getAttribute( name, 2 );
1071 return elem.getAttribute( name );
1073 // elem is actually elem.style ... set the style
1075 // IE actually uses filters for opacity
1076 if ( name == "opacity" && jQuery.browser.msie ) {
1077 if ( value != undefined ) {
1078 // IE has trouble with opacity if it does not have layout
1079 // Force it by setting the zoom level
1082 // Set the alpha filter to set the opacity
1083 elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
1084 (parseFloat( value ).toString() == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
1087 return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
1088 (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100).toString() :
1092 name = name.replace(/-([a-z])/ig, function(all, letter){
1093 return letter.toUpperCase();
1096 if ( value != undefined )
1097 elem[ name ] = value;
1099 return elem[ name ];
1103 trim: function( text ) {
1104 return (text || "").replace( /^\s+|\s+$/g, "" );
1107 makeArray: function( array ) {
1110 if( array != null ){
1111 var i = array.length;
1112 //the window, strings and functions also have 'length'
1113 if( i == null || array.split || array.setInterval || array.call )
1117 ret[--i] = array[i];
1123 inArray: function( elem, array ) {
1124 for ( var i = 0, length = array.length; i < length; i++ )
1125 // Use === because on IE, window == document
1126 if ( array[ i ] === elem )
1132 merge: function( first, second ) {
1133 // We have to loop this way because IE & Opera overwrite the length
1134 // expando of getElementsByTagName
1136 // Also, we need to make sure that the correct elements are being returned
1137 // (IE returns comment nodes in a '*' query)
1138 if ( jQuery.browser.msie ) {
1139 for ( ; second[ i ]; i++ )
1140 if ( second[ i ].nodeType != 8 )
1141 first.push( second[ i ] );
1144 for ( ; second[ i ]; i++ )
1145 first.push( second[ i ] );
1150 unique: function( array ) {
1151 var ret = [], done = {};
1155 for ( var i = 0, length = array.length; i < length; i++ ) {
1156 var id = jQuery.data( array[ i ] );
1158 if ( !done[ id ] ) {
1160 ret.push( array[ i ] );
1171 grep: function( elems, callback, inv ) {
1174 // Go through the array, only saving the items
1175 // that pass the validator function
1176 for ( var i = 0, length = elems.length; i < length; i++ )
1177 if ( !inv && callback( elems[ i ], i ) || inv && !callback( elems[ i ], i ) )
1178 ret.push( elems[ i ] );
1183 map: function( elems, callback ) {
1186 // Go through the array, translating each of the items to their
1187 // new value (or values).
1188 for ( var i = 0, length = elems.length; i < length; i++ ) {
1189 var value = callback( elems[ i ], i );
1191 if ( value != null )
1192 ret[ ret.length ] = value;
1195 return ret.concat.apply( [], ret );
1199 var userAgent = navigator.userAgent.toLowerCase();
1201 // Figure out what browser is being used
1203 version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1],
1204 safari: /webkit/.test( userAgent ),
1205 opera: /opera/.test( userAgent ),
1206 msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
1207 mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
1210 var styleFloat = jQuery.browser.msie ?
1215 // Check to see if the W3C box model is being used
1216 boxModel: !jQuery.browser.msie || document.compatMode == "CSS1Compat",
1220 "class": "className",
1221 "float": styleFloat,
1222 cssFloat: styleFloat,
1223 styleFloat: styleFloat,
1224 innerHTML: "innerHTML",
1225 className: "className",
1227 disabled: "disabled",
1229 readonly: "readOnly",
1230 selected: "selected",
1231 maxlength: "maxLength",
1232 selectedIndex: "selectedIndex",
1233 defaultValue: "defaultValue",
1235 nodeName: "nodeName"
1240 parent: function(elem){return elem.parentNode;},
1241 parents: function(elem){return jQuery.dir(elem,"parentNode");},
1242 next: function(elem){return jQuery.nth(elem,2,"nextSibling");},
1243 prev: function(elem){return jQuery.nth(elem,2,"previousSibling");},
1244 nextAll: function(elem){return jQuery.dir(elem,"nextSibling");},
1245 prevAll: function(elem){return jQuery.dir(elem,"previousSibling");},
1246 siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},
1247 children: function(elem){return jQuery.sibling(elem.firstChild);},
1248 contents: function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}
1249 }, function(name, fn){
1250 jQuery.fn[ name ] = function( selector ) {
1251 var ret = jQuery.map( this, fn );
1253 if ( selector && typeof selector == "string" )
1254 ret = jQuery.multiFilter( selector, ret );
1256 return this.pushStack( jQuery.unique( ret ) );
1262 prependTo: "prepend",
1263 insertBefore: "before",
1264 insertAfter: "after",
1265 replaceAll: "replaceWith"
1266 }, function(name, original){
1267 jQuery.fn[ name ] = function() {
1268 var args = arguments;
1270 return this.each(function(){
1271 for ( var i = 0, length = args.length; i < length; i++ )
1272 jQuery( args[ i ] )[ original ]( this );
1278 removeAttr: function( name ) {
1279 jQuery.attr( this, name, "" );
1280 if (this.nodeType == 1)
1281 this.removeAttribute( name );
1284 addClass: function( classNames ) {
1285 jQuery.className.add( this, classNames );
1288 removeClass: function( classNames ) {
1289 jQuery.className.remove( this, classNames );
1292 toggleClass: function( classNames ) {
1293 jQuery.className[ jQuery.className.has( this, classNames ) ? "remove" : "add" ]( this, classNames );
1296 remove: function( selector ) {
1297 if ( !selector || jQuery.filter( selector, [ this ] ).r.length ) {
1298 // Prevent memory leaks
1299 jQuery( "*", this ).add(this).each(function(){
1300 jQuery.event.remove(this);
1301 jQuery.removeData(this);
1303 if (this.parentNode)
1304 this.parentNode.removeChild( this );
1309 // Remove element nodes and prevent memory leaks
1310 jQuery( ">*", this ).remove();
1312 // Remove any remaining nodes
1313 while ( this.firstChild )
1314 this.removeChild( this.firstChild );
1316 }, function(name, fn){
1317 jQuery.fn[ name ] = function(){
1318 return this.each( fn, arguments );
1322 jQuery.each([ "Height", "Width" ], function(i, name){
1323 var type = name.toLowerCase();
1325 jQuery.fn[ type ] = function( size ) {
1326 // Get window width or height
1327 return this[0] == window ?
1328 // Opera reports document.body.client[Width/Height] properly in both quirks and standards
1329 jQuery.browser.opera && document.body[ "client" + name ] ||
1331 // Safari reports inner[Width/Height] just fine (Mozilla and Opera include scroll bar widths)
1332 jQuery.browser.safari && window[ "inner" + name ] ||
1334 // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
1335 document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] || document.body[ "client" + name ] :
1337 // Get document width or height
1338 this[0] == document ?
1339 // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
1341 Math.max(document.body["scroll" + name], document.documentElement["scroll" + name]),
1342 Math.max(document.body["offset" + name], document.documentElement["offset" + name])
1345 // Get or set width or height on the element
1347 // Get width or height on the element
1348 (this.length ? jQuery.css( this[0], type ) : null) :
1350 // Set the width or height on the element (default to pixels if value is unitless)
1351 this.css( type, size.constructor == String ? size : size + "px" );