2 * jQuery @VERSION - New Wave Javascript
4 * Copyright (c) 2007 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 if ( typeof jQuery != "undefined" )
16 var jQuery = window.jQuery = function(a,c) {
17 // If the context is global, return a new object
18 if ( window == this || !this.init )
19 return new jQuery(a,c);
21 return this.init(a,c);
24 // Map over the $ in case of overwrite
25 if ( typeof $ != "undefined" )
28 // Map the jQuery namespace to the '$' one
31 var quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;
33 jQuery.fn = jQuery.prototype = {
35 // Make sure that a selection was provided
38 // Handle HTML strings
39 if ( typeof a == "string" ) {
40 var m = quickExpr.exec(a);
41 if ( m && (m[1] || !c) ) {
42 // HANDLE: $(html) -> $(array)
44 a = jQuery.clean( [ m[1] ], c );
48 var tmp = document.getElementById( m[3] );
50 // Handle the case where IE and Opera return items
51 // by name instead of ID
53 return jQuery().find( a );
65 return new jQuery( c ).find( a );
67 // HANDLE: $(function)
68 // Shortcut for document ready
69 } else if ( jQuery.isFunction(a) )
70 return new jQuery(document)[ jQuery.fn.ready ? "ready" : "load" ]( a );
74 a.constructor == Array && a ||
76 // HANDLE: $(arraylike)
77 // Watch for when an array-like object is passed as the selector
78 (a.jquery || a.length && a != window && !a.nodeType && a[0] != undefined && a[0].nodeType) && jQuery.makeArray( a ) ||
92 get: function( num ) {
93 return num == undefined ?
95 // Return a 'clean' array
96 jQuery.makeArray( this ) :
98 // Return just the object
102 pushStack: function( a ) {
104 ret.prevObject = this;
108 setArray: function( a ) {
110 Array.prototype.push.apply( this, a );
114 each: function( fn, args ) {
115 return jQuery.each( this, fn, args );
118 index: function( obj ) {
120 this.each(function(i){
121 if ( this == obj ) pos = i;
126 attr: function( key, value, type ) {
129 // Look for the case where we're accessing a style value
130 if ( key.constructor == String )
131 if ( value == undefined )
132 return this.length && jQuery[ type || "attr" ]( this[0], key ) || undefined;
138 // Check to see if we're setting style values
139 return this.each(function(index){
140 // Set all the styles
141 for ( var prop in obj )
143 type ? this.style : this,
144 prop, jQuery.prop(this, obj[prop], type, index, prop)
149 css: function( key, value ) {
150 return this.attr( key, value, "curCSS" );
154 if ( typeof e != "object" && e != null )
155 return this.empty().append( document.createTextNode( e ) );
158 jQuery.each( e || this, function(){
159 jQuery.each( this.childNodes, function(){
160 if ( this.nodeType != 8 )
161 t += this.nodeType != 1 ?
162 this.nodeValue : jQuery.fn.text([ this ]);
168 wrapAll: function(html) {
170 // The elements to wrap the target around
171 jQuery(html, this[0].ownerDocument)
173 .insertBefore(this[0])
176 while ( elem.firstChild )
177 elem = elem.firstChild;
185 wrapInner: function(html) {
186 return this.each(function(){
187 jQuery(this).contents().wrapAll(html);
191 wrap: function(html) {
192 return this.each(function(){
193 jQuery(this).wrapAll(html);
198 return this.domManip(arguments, true, 1, function(a){
199 this.appendChild( a );
203 prepend: function() {
204 return this.domManip(arguments, true, -1, function(a){
205 this.insertBefore( a, this.firstChild );
210 return this.domManip(arguments, false, 1, function(a){
211 this.parentNode.insertBefore( a, this );
216 return this.domManip(arguments, false, -1, function(a){
217 this.parentNode.insertBefore( a, this.nextSibling );
222 return this.prevObject || jQuery([]);
226 var data = jQuery.map(this, function(a){ return jQuery.find(t,a); });
227 return this.pushStack( /[^+>] [^+>]/.test( t ) || t.indexOf("..") > -1 ?
228 jQuery.unique( data ) : data );
231 clone: function(events) {
233 var ret = this.map(function(){
234 return this.outerHTML ? jQuery(this.outerHTML)[0] : this.cloneNode(true);
237 if (events === true) {
238 var clone = ret.find("*").andSelf();
240 this.find("*").andSelf().each(function(i) {
241 var events = jQuery.data(this, "events");
242 for ( var type in events )
243 for ( var handler in events[type] )
244 jQuery.event.add(clone[i], type, events[type][handler], events[type][handler].data);
248 // Return the cloned set
252 filter: function(t) {
253 return this.pushStack(
254 jQuery.isFunction( t ) &&
255 jQuery.grep(this, function(el, index){
256 return t.apply(el, [index]);
259 jQuery.multiFilter(t,this) );
263 return this.pushStack(
264 t.constructor == String &&
265 jQuery.multiFilter(t, this, true) ||
267 jQuery.grep(this, function(a) {
268 return ( t.constructor == Array || t.jquery )
269 ? jQuery.inArray( a, t ) < 0
276 return this.pushStack( jQuery.merge(
278 t.constructor == String ?
280 t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ?
286 return expr ? jQuery.multiFilter(expr,this).length > 0 : false;
289 hasClass: function(expr) {
290 return this.is("." + expr);
293 val: function( val ) {
294 if ( val == undefined ) {
298 // We need to handle select boxes special
299 if ( jQuery.nodeName(elem, "select") ) {
300 var index = elem.selectedIndex,
302 options = elem.options,
303 one = elem.type == "select-one";
305 // Nothing was selected
309 // Loop through all the selected options
310 for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
311 var option = options[i];
312 if ( option.selected ) {
313 // Get the specifc value for the option
314 var val = jQuery.browser.msie && !option.attributes["value"].specified ? option.text : option.value;
316 // We don't need an array for one selects
320 // Multi-Selects return an array
327 // Everything else, we just grab the value
329 return this[0].value.replace(/\r/g, "");
332 return this.each(function(){
333 if ( val.constructor == Array && /radio|checkbox/.test(this.type) )
334 this.checked = (jQuery.inArray(this.value, val) >= 0 ||
335 jQuery.inArray(this.name, val) >= 0);
336 else if ( jQuery.nodeName(this, "select") ) {
337 var tmp = val.constructor == Array ? val : [val];
339 jQuery("option", this).each(function(){
340 this.selected = (jQuery.inArray(this.value, tmp) >= 0 ||
341 jQuery.inArray(this.text, tmp) >= 0);
345 this.selectedIndex = -1;
351 html: function( val ) {
352 return val == undefined ?
353 ( this.length ? this[0].innerHTML : null ) :
354 this.empty().append( val );
357 replaceWith: function( val ) {
358 return this.after( val ).remove();
362 return this.pushStack( Array.prototype.slice.apply( this, arguments ) );
366 return this.pushStack(jQuery.map( this, function(elem,i){
367 return fn.call( elem, i, elem );
371 andSelf: function() {
372 return this.add( this.prevObject );
375 domManip: function(args, table, dir, fn) {
376 var clone = this.length > 1, a;
378 return this.each(function(){
380 a = jQuery.clean(args, this.ownerDocument);
387 if ( table && jQuery.nodeName(this, "table") && jQuery.nodeName(a[0], "tr") )
388 obj = this.getElementsByTagName("tbody")[0] || this.appendChild(document.createElement("tbody"));
390 jQuery.each( a, function(){
391 if ( jQuery.nodeName(this, "script") ) {
393 jQuery.ajax({ url: this.src, async: false, dataType: "script" });
395 jQuery.globalEval( this.text || this.textContent || this.innerHTML || "" );
397 fn.apply( obj, [ clone ? this.cloneNode(true) : this ] );
403 jQuery.extend = jQuery.fn.extend = function() {
404 // copy reference to target object
405 var target = arguments[0] || {}, a = 1, al = arguments.length, deep = false;
407 // Handle a deep copy situation
408 if ( target.constructor == Boolean ) {
410 target = arguments[1] || {};
413 // extend jQuery itself if only one argument is passed
421 for ( ; a < al; a++ )
422 // Only deal with non-null/undefined values
423 if ( (prop = arguments[a]) != null )
424 // Extend the base object
425 for ( var i in prop ) {
426 // Prevent never-ending loop
427 if ( target == prop[i] )
430 // Recurse if we're merging object values
431 if ( deep && typeof prop[i] == 'object' && target[i] )
432 jQuery.extend( target[i], prop[i] );
434 // Don't bring in undefined values
435 else if ( prop[i] != undefined )
439 // Return the modified object
443 var expando = "jQuery" + (new Date()).getTime(), uuid = 0;
446 noConflict: function(deep) {
449 window.jQuery = _jQuery;
453 // This may seem like some crazy code, but trust me when I say that this
454 // is the only cross-browser way to do this. --John
455 isFunction: function( fn ) {
456 return !!fn && typeof fn != "string" && !fn.nodeName &&
457 fn.constructor != Array && /function/i.test( fn + "" );
460 // check if an element is in a XML document
461 isXMLDoc: function(elem) {
462 return elem.documentElement && !elem.body ||
463 elem.tagName && elem.ownerDocument && !elem.ownerDocument.body;
466 // Evalulates a script in a global context
467 // Evaluates Async. in Safari 2 :-(
468 globalEval: function( data ) {
469 data = jQuery.trim( data );
471 if ( window.execScript )
472 window.execScript( data );
473 else if ( jQuery.browser.safari )
474 // safari doesn't provide a synchronous global eval
475 window.setTimeout( data, 0 );
477 eval.call( window, data );
481 nodeName: function( elem, name ) {
482 return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
487 data: function( elem, name, data ) {
488 var id = elem[ expando ];
490 // Compute a unique ID for the element
492 id = elem[ expando ] = ++uuid;
494 // Only generate the data cache if we're
495 // trying to access or manipulate it
496 if ( name && !jQuery.cache[ id ] )
497 jQuery.cache[ id ] = {};
499 // Prevent overriding the named cache with undefined values
500 if ( data != undefined )
501 jQuery.cache[ id ][ name ] = data;
503 // Return the named cache data, or the ID for the element
504 return name ? jQuery.cache[ id ][ name ] : id;
507 removeData: function( elem, name ) {
508 var id = elem[ expando ];
510 // If we want to remove a specific section of the element's data
512 if ( jQuery.cache[ id ] ) {
513 // Remove the section of cache data
514 delete jQuery.cache[ id ][ name ];
516 // If we've removed all the data, remove the element's cache
518 for ( name in jQuery.cache[ id ] ) break;
520 jQuery.removeData( elem );
523 // Otherwise, we want to remove all of the element's data
525 // Clean up the element expando
527 delete elem[ expando ];
529 // IE has trouble directly removing the expando
530 // but it's ok with using removeAttribute
531 elem.removeAttribute( expando );
534 // Completely remove the data cache
535 delete jQuery.cache[ id ];
539 // args is for internal usage only
540 each: function( obj, fn, args ) {
542 if ( obj.length == undefined )
544 fn.apply( obj[i], args );
546 for ( var i = 0, ol = obj.length; i < ol; i++ )
547 if ( fn.apply( obj[i], args ) === false ) break;
549 // A special, fast, case for the most common use of each
551 if ( obj.length == undefined )
553 fn.call( obj[i], i, obj[i] );
555 for ( var i = 0, ol = obj.length, val = obj[0];
556 i < ol && fn.call(val,i,val) !== false; val = obj[++i] ){}
562 prop: function(elem, value, type, index, prop){
563 // Handle executable functions
564 if ( jQuery.isFunction( value ) )
565 value = value.call( elem, [index] );
567 // exclude the following css properties to add px
568 var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i;
570 // Handle passing in a number to a CSS property
571 return value && value.constructor == Number && type == "curCSS" && !exclude.test(prop) ?
577 // internal only, use addClass("class")
578 add: function( elem, c ){
579 jQuery.each( (c || "").split(/\s+/), function(i, cur){
580 if ( !jQuery.className.has( elem.className, cur ) )
581 elem.className += ( elem.className ? " " : "" ) + cur;
585 // internal only, use removeClass("class")
586 remove: function( elem, c ){
587 elem.className = c != undefined ?
588 jQuery.grep( elem.className.split(/\s+/), function(cur){
589 return !jQuery.className.has( c, cur );
593 // internal only, use is(".class")
594 has: function( t, c ) {
595 return jQuery.inArray( c, (t.className || t).toString().split(/\s+/) ) > -1;
599 swap: function(e,o,f) {
601 e.style["old"+i] = e.style[i];
606 e.style[i] = e.style["old"+i];
610 if ( p == "height" || p == "width" ) {
611 var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"];
613 jQuery.each( d, function(){
614 old["padding" + this] = 0;
615 old["border" + this + "Width"] = 0;
618 jQuery.swap( e, old, function() {
619 if ( jQuery(e).is(':visible') ) {
620 oHeight = e.offsetHeight;
621 oWidth = e.offsetWidth;
623 e = jQuery(e.cloneNode(true))
624 .find(":radio").removeAttr("checked").end()
626 visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0"
627 }).appendTo(e.parentNode)[0];
629 var parPos = jQuery.css(e.parentNode,"position") || "static";
630 if ( parPos == "static" )
631 e.parentNode.style.position = "relative";
633 oHeight = e.clientHeight;
634 oWidth = e.clientWidth;
636 if ( parPos == "static" )
637 e.parentNode.style.position = "static";
639 e.parentNode.removeChild(e);
643 return p == "height" ? oHeight : oWidth;
646 return jQuery.curCSS( e, p );
649 curCSS: function(elem, prop, force) {
650 var ret, stack = [], swap = [];
652 // A helper method for determining if an element's values are broken
654 if ( !jQuery.browser.safari )
657 var ret = document.defaultView.getComputedStyle(a,null);
658 return !ret || ret.getPropertyValue("color") == "";
661 if (prop == "opacity" && jQuery.browser.msie) {
662 ret = jQuery.attr(elem.style, "opacity");
663 return ret == "" ? "1" : ret;
666 if (prop.match(/float/i))
669 if (!force && elem.style[prop])
670 ret = elem.style[prop];
672 else if (document.defaultView && document.defaultView.getComputedStyle) {
674 if (prop.match(/float/i))
677 prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase();
678 var cur = document.defaultView.getComputedStyle(elem, null);
680 if ( cur && !color(elem) )
681 ret = cur.getPropertyValue(prop);
683 // If the element isn't reporting its values properly in Safari
684 // then some display: none elements are involved
686 // Locate all of the parent display: none elements
687 for ( var a = elem; a && color(a); a = a.parentNode )
690 // Go through and make them visible, but in reverse
691 // (It would be better if we knew the exact display type that they had)
692 for ( a = 0; a < stack.length; a++ )
693 if ( color(stack[a]) ) {
694 swap[a] = stack[a].style.display;
695 stack[a].style.display = "block";
698 // Since we flip the display style, we have to handle that
699 // one special, otherwise get the value
700 ret = prop == "display" && swap[stack.length-1] != null ?
702 document.defaultView.getComputedStyle(elem,null).getPropertyValue(prop) || "";
704 // Finally, revert the display styles back
705 for ( a = 0; a < swap.length; a++ )
706 if ( swap[a] != null )
707 stack[a].style.display = swap[a];
710 if ( prop == "opacity" && ret == "" )
713 } else if (elem.currentStyle) {
714 var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});
715 ret = elem.currentStyle[prop] || elem.currentStyle[newProp];
717 // From the awesome hack by Dean Edwards
718 // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
720 // If we're not dealing with a regular pixel number
721 // but a number that has a weird ending, we need to convert it to pixels
722 if ( !/^\d+(px)?$/i.test(ret) && /^\d/.test(ret) ) {
723 var style = elem.style.left;
724 var runtimeStyle = elem.runtimeStyle.left;
725 elem.runtimeStyle.left = elem.currentStyle.left;
726 elem.style.left = ret || 0;
727 ret = elem.style.pixelLeft + "px";
728 elem.style.left = style;
729 elem.runtimeStyle.left = runtimeStyle;
736 clean: function(a, doc) {
738 doc = doc || document;
740 jQuery.each( a, function(i,arg){
743 if ( arg.constructor == Number )
744 arg = arg.toString();
746 // Convert html string into DOM nodes
747 if ( typeof arg == "string" ) {
748 // Fix "XHTML"-style tags in all browsers
749 arg = arg.replace(/(<(\w+)[^>]*?)\/>/g, function(m, all, tag){
750 return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i)? m : all+"></"+tag+">";
753 // Trim whitespace, otherwise indexOf won't work as expected
754 var s = jQuery.trim(arg).toLowerCase(), div = doc.createElement("div"), tb = [];
757 // option or optgroup
758 !s.indexOf("<opt") &&
759 [1, "<select>", "</select>"] ||
761 !s.indexOf("<leg") &&
762 [1, "<fieldset>", "</fieldset>"] ||
764 s.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
765 [1, "<table>", "</table>"] ||
768 [2, "<table><tbody>", "</tbody></table>"] ||
770 // <thead> matched above
771 (!s.indexOf("<td") || !s.indexOf("<th")) &&
772 [3, "<table><tbody><tr>", "</tr></tbody></table>"] ||
774 !s.indexOf("<col") &&
775 [2, "<table><tbody></tbody><colgroup>", "</colgroup></table>"] ||
777 // IE can't serialize <link> and <script> tags normally
778 jQuery.browser.msie &&
779 [1, "div<div>", "</div>"] ||
783 // Go to html and back, then peel off extra wrappers
784 div.innerHTML = wrap[1] + arg + wrap[2];
786 // Move to the right depth
790 // Remove IE's autoinserted <tbody> from table fragments
791 if ( jQuery.browser.msie ) {
793 // String was a <table>, *may* have spurious <tbody>
794 if ( !s.indexOf("<table") && s.indexOf("<tbody") < 0 )
795 tb = div.firstChild && div.firstChild.childNodes;
797 // String was a bare <thead> or <tfoot>
798 else if ( wrap[1] == "<table>" && s.indexOf("<tbody") < 0 )
801 for ( var n = tb.length-1; n >= 0 ; --n )
802 if ( jQuery.nodeName(tb[n], "tbody") && !tb[n].childNodes.length )
803 tb[n].parentNode.removeChild(tb[n]);
805 // IE completely kills leading whitespace when innerHTML is used
806 if ( /^\s/.test(arg) )
807 div.insertBefore( doc.createTextNode( arg.match(/^\s*/)[0] ), div.firstChild );
811 arg = jQuery.makeArray( div.childNodes );
814 if ( 0 === arg.length && (!jQuery.nodeName(arg, "form") && !jQuery.nodeName(arg, "select")) )
817 if ( arg[0] == undefined || jQuery.nodeName(arg, "form") || arg.options )
820 r = jQuery.merge( r, arg );
827 attr: function(elem, name, value){
828 var fix = jQuery.isXMLDoc(elem) ? {} : jQuery.props;
830 // Safari mis-reports the default selected property of a hidden option
831 // Accessing the parent's selectedIndex property fixes it
832 if ( name == "selected" && jQuery.browser.safari )
833 elem.parentNode.selectedIndex;
835 // Certain attributes only work when accessed via the old DOM 0 way
837 if ( value != undefined ) elem[fix[name]] = value;
838 return elem[fix[name]];
839 } else if ( jQuery.browser.msie && name == "style" )
840 return jQuery.attr( elem.style, "cssText", value );
842 else if ( value == undefined && jQuery.browser.msie && jQuery.nodeName(elem, "form") && (name == "action" || name == "method") )
843 return elem.getAttributeNode(name).nodeValue;
845 // IE elem.getAttribute passes even for style
846 else if ( elem.tagName ) {
848 if ( value != undefined ) {
849 if ( name == "type" && jQuery.nodeName(elem,"input") && elem.parentNode )
850 throw "type property can't be changed";
851 elem.setAttribute( name, value );
854 if ( jQuery.browser.msie && /href|src/.test(name) && !jQuery.isXMLDoc(elem) )
855 return elem.getAttribute( name, 2 );
857 return elem.getAttribute( name );
859 // elem is actually elem.style ... set the style
861 // IE actually uses filters for opacity
862 if ( name == "opacity" && jQuery.browser.msie ) {
863 if ( value != undefined ) {
864 // IE has trouble with opacity if it does not have layout
865 // Force it by setting the zoom level
868 // Set the alpha filter to set the opacity
869 elem.filter = (elem.filter || "").replace(/alpha\([^)]*\)/,"") +
870 (parseFloat(value).toString() == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
874 (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100).toString() : "";
876 name = name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});
877 if ( value != undefined ) elem[name] = value;
883 return (t||"").replace(/^\s+|\s+$/g, "");
886 makeArray: function( a ) {
889 // Need to use typeof to fight Safari childNodes crashes
890 if ( typeof a != "array" )
891 for ( var i = 0, al = a.length; i < al; i++ )
899 inArray: function( b, a ) {
900 for ( var i = 0, al = a.length; i < al; i++ )
906 merge: function(first, second) {
907 // We have to loop this way because IE & Opera overwrite the length
908 // expando of getElementsByTagName
910 // Also, we need to make sure that the correct elements are being returned
911 // (IE returns comment nodes in a '*' query)
912 if ( jQuery.browser.msie ) {
913 for ( var i = 0; second[i]; i++ )
914 if ( second[i].nodeType != 8 )
915 first.push(second[i]);
917 for ( var i = 0; second[i]; i++ )
918 first.push(second[i]);
923 unique: function(first) {
924 var r = [], done = {};
927 for ( var i = 0, fl = first.length; i < fl; i++ ) {
928 var id = jQuery.data(first[i]);
941 grep: function(elems, fn, inv) {
942 // If a string is passed in for the function, make a function
943 // for it (a handy shortcut)
944 if ( typeof fn == "string" )
945 fn = eval("false||function(a,i){return " + fn + "}");
949 // Go through the array, only saving the items
950 // that pass the validator function
951 for ( var i = 0, el = elems.length; i < el; i++ )
952 if ( !inv && fn(elems[i],i) || inv && !fn(elems[i],i) )
953 result.push( elems[i] );
958 map: function(elems, fn) {
959 // If a string is passed in for the function, make a function
960 // for it (a handy shortcut)
961 if ( typeof fn == "string" )
962 fn = eval("false||function(a){return " + fn + "}");
966 // Go through the array, translating each of the items to their
967 // new value (or values).
968 for ( var i = 0, el = elems.length; i < el; i++ ) {
969 var val = fn(elems[i],i);
971 if ( val !== null && val != undefined ) {
972 if ( val.constructor != Array ) val = [val];
973 result = result.concat( val );
981 var userAgent = navigator.userAgent.toLowerCase();
983 // Figure out what browser is being used
985 version: (userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/) || [])[1],
986 safari: /webkit/.test(userAgent),
987 opera: /opera/.test(userAgent),
988 msie: /msie/.test(userAgent) && !/opera/.test(userAgent),
989 mozilla: /mozilla/.test(userAgent) && !/(compatible|webkit)/.test(userAgent)
992 var styleFloat = jQuery.browser.msie ? "styleFloat" : "cssFloat";
995 // Check to see if the W3C box model is being used
996 boxModel: !jQuery.browser.msie || document.compatMode == "CSS1Compat",
998 styleFloat: jQuery.browser.msie ? "styleFloat" : "cssFloat",
1002 "class": "className",
1003 "float": styleFloat,
1004 cssFloat: styleFloat,
1005 styleFloat: styleFloat,
1006 innerHTML: "innerHTML",
1007 className: "className",
1009 disabled: "disabled",
1011 readonly: "readOnly",
1012 selected: "selected",
1013 maxlength: "maxLength"
1018 parent: "a.parentNode",
1019 parents: "jQuery.dir(a,'parentNode')",
1020 next: "jQuery.nth(a,2,'nextSibling')",
1021 prev: "jQuery.nth(a,2,'previousSibling')",
1022 nextAll: "jQuery.dir(a,'nextSibling')",
1023 prevtAll: "jQuery.dir(a,'previousSibling')",
1024 siblings: "jQuery.sibling(a.parentNode.firstChild,a)",
1025 children: "jQuery.sibling(a.firstChild)",
1026 contents: "jQuery.nodeName(a,'iframe')?a.contentDocument||a.contentWindow.document:jQuery.makeArray(a.childNodes)"
1028 jQuery.fn[ i ] = function(a) {
1029 var ret = jQuery.map(this,n);
1030 if ( a && typeof a == "string" )
1031 ret = jQuery.multiFilter(a,ret);
1032 return this.pushStack( jQuery.unique(ret) );
1038 prependTo: "prepend",
1039 insertBefore: "before",
1040 insertAfter: "after",
1041 replaceAll: "replaceWith"
1043 jQuery.fn[ i ] = function(){
1045 return this.each(function(){
1046 for ( var j = 0, al = a.length; j < al; j++ )
1047 jQuery(a[j])[n]( this );
1053 removeAttr: function( key ) {
1054 jQuery.attr( this, key, "" );
1055 this.removeAttribute( key );
1057 addClass: function(c){
1058 jQuery.className.add(this,c);
1060 removeClass: function(c){
1061 jQuery.className.remove(this,c);
1063 toggleClass: function( c ){
1064 jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this, c);
1066 remove: function(a){
1067 if ( !a || jQuery.filter( a, [this] ).r.length ) {
1068 jQuery.removeData( this );
1069 this.parentNode.removeChild( this );
1073 // Clean up the cache
1074 jQuery("*", this).each(function(){ jQuery.removeData(this); });
1076 while ( this.firstChild )
1077 this.removeChild( this.firstChild );
1080 jQuery.fn[ i ] = function() {
1081 return this.each( n, arguments );
1085 jQuery.each( [ "Height", "Width" ], function(i,name){
1086 var n = name.toLowerCase();
1088 jQuery.fn[ n ] = function(h) {
1089 return this[0] == window ?
1090 jQuery.browser.safari && self["inner" + name] ||
1091 jQuery.boxModel && Math.max(document.documentElement["client" + name], document.body["client" + name]) ||
1092 document.body["client" + name] :
1094 this[0] == document ?
1095 Math.max( document.body["scroll" + name], document.body["offset" + name] ) :
1098 ( this.length ? jQuery.css( this[0], n ) : null ) :
1099 this.css( n, h.constructor == String ? h : h + "px" );