2010-09-08 16:00:29 +00:00
|
|
|
(function( jQuery ) {
|
|
|
|
|
2010-12-01 20:31:22 +00:00
|
|
|
var rclass = /[\n\t\r]/g,
|
2011-04-29 02:24:40 +00:00
|
|
|
rspace = /\s+/,
|
2009-12-18 16:27:56 +00:00
|
|
|
rreturn = /\r/g,
|
2010-09-22 13:16:28 +00:00
|
|
|
rtype = /^(?:button|input)$/i,
|
|
|
|
rfocusable = /^(?:button|input|object|select|textarea)$/i,
|
|
|
|
rclickable = /^a(?:rea)?$/i,
|
2011-05-07 18:49:04 +00:00
|
|
|
rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
|
2011-09-12 23:40:14 +00:00
|
|
|
nodeHook, boolHook, fixSpecified;
|
2009-12-14 21:24:28 +00:00
|
|
|
|
2009-03-18 21:15:38 +00:00
|
|
|
jQuery.fn.extend({
|
2009-03-22 23:25:03 +00:00
|
|
|
attr: function( name, value ) {
|
2010-03-23 16:12:16 +00:00
|
|
|
return jQuery.access( this, name, value, true, jQuery.attr );
|
2009-03-18 21:15:38 +00:00
|
|
|
},
|
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
removeAttr: function( name ) {
|
|
|
|
return this.each(function() {
|
2011-04-03 20:49:48 +00:00
|
|
|
jQuery.removeAttr( this, name );
|
2010-01-06 20:08:07 +00:00
|
|
|
});
|
|
|
|
},
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
prop: function( name, value ) {
|
|
|
|
return jQuery.access( this, name, value, true, jQuery.prop );
|
|
|
|
},
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
removeProp: function( name ) {
|
2011-05-04 15:40:46 +00:00
|
|
|
name = jQuery.propFix[ name ] || name;
|
2011-03-07 03:47:40 +00:00
|
|
|
return this.each(function() {
|
|
|
|
// try/catch handles cases where IE balks (such as removing a property on window)
|
|
|
|
try {
|
|
|
|
this[ name ] = undefined;
|
|
|
|
delete this[ name ];
|
|
|
|
} catch( e ) {}
|
|
|
|
});
|
|
|
|
},
|
2010-01-06 20:08:07 +00:00
|
|
|
|
2009-09-08 01:07:50 +00:00
|
|
|
addClass: function( value ) {
|
2011-06-19 22:58:47 +00:00
|
|
|
var classNames, i, l, elem,
|
|
|
|
setClass, c, cl;
|
2011-06-08 00:54:11 +00:00
|
|
|
|
2011-03-08 17:07:05 +00:00
|
|
|
if ( jQuery.isFunction( value ) ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
return this.each(function( j ) {
|
2011-06-19 22:58:47 +00:00
|
|
|
jQuery( this ).addClass( value.call(this, j, this.className) );
|
2009-12-10 05:15:49 +00:00
|
|
|
});
|
|
|
|
}
|
2009-12-10 04:57:19 +00:00
|
|
|
|
2009-09-08 01:07:50 +00:00
|
|
|
if ( value && typeof value === "string" ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
classNames = value.split( rspace );
|
2009-09-08 01:07:50 +00:00
|
|
|
|
2011-06-08 00:54:11 +00:00
|
|
|
for ( i = 0, l = this.length; i < l; i++ ) {
|
|
|
|
elem = this[ i ];
|
2009-09-08 01:07:50 +00:00
|
|
|
|
|
|
|
if ( elem.nodeType === 1 ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
if ( !elem.className && classNames.length === 1 ) {
|
2009-09-08 01:07:50 +00:00
|
|
|
elem.className = value;
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2009-09-08 01:07:50 +00:00
|
|
|
} else {
|
2011-06-19 22:58:47 +00:00
|
|
|
setClass = " " + elem.className + " ";
|
2010-11-09 16:09:07 +00:00
|
|
|
|
2011-06-08 00:54:11 +00:00
|
|
|
for ( c = 0, cl = classNames.length; c < cl; c++ ) {
|
2011-06-19 22:58:47 +00:00
|
|
|
if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) {
|
|
|
|
setClass += classNames[ c ] + " ";
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
|
|
|
}
|
2010-02-13 19:30:27 +00:00
|
|
|
elem.className = jQuery.trim( setClass );
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
removeClass: function( value ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
var classNames, i, l, elem, className, c, cl;
|
|
|
|
|
|
|
|
if ( jQuery.isFunction( value ) ) {
|
|
|
|
return this.each(function( j ) {
|
2011-06-19 22:58:47 +00:00
|
|
|
jQuery( this ).removeClass( value.call(this, j, this.className) );
|
2009-12-10 05:15:49 +00:00
|
|
|
});
|
|
|
|
}
|
2009-12-10 04:57:19 +00:00
|
|
|
|
2009-09-08 01:07:50 +00:00
|
|
|
if ( (value && typeof value === "string") || value === undefined ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
classNames = (value || "").split( rspace );
|
2009-09-08 01:07:50 +00:00
|
|
|
|
2011-06-08 00:54:11 +00:00
|
|
|
for ( i = 0, l = this.length; i < l; i++ ) {
|
|
|
|
elem = this[ i ];
|
2009-09-08 01:07:50 +00:00
|
|
|
|
|
|
|
if ( elem.nodeType === 1 && elem.className ) {
|
|
|
|
if ( value ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
className = (" " + elem.className + " ").replace( rclass, " " );
|
|
|
|
for ( c = 0, cl = classNames.length; c < cl; c++ ) {
|
|
|
|
className = className.replace(" " + classNames[ c ] + " ", " ");
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
2010-02-02 02:33:58 +00:00
|
|
|
elem.className = jQuery.trim( className );
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2009-09-08 01:07:50 +00:00
|
|
|
} else {
|
|
|
|
elem.className = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2010-01-06 20:23:30 +00:00
|
|
|
toggleClass: function( value, stateVal ) {
|
2010-11-09 16:09:07 +00:00
|
|
|
var type = typeof value,
|
|
|
|
isBool = typeof stateVal === "boolean";
|
2010-01-06 20:08:07 +00:00
|
|
|
|
2010-01-06 20:23:30 +00:00
|
|
|
if ( jQuery.isFunction( value ) ) {
|
2011-06-19 22:58:47 +00:00
|
|
|
return this.each(function( i ) {
|
|
|
|
jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal );
|
2010-01-06 20:08:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2010-01-06 20:23:30 +00:00
|
|
|
return this.each(function() {
|
2010-01-06 20:08:07 +00:00
|
|
|
if ( type === "string" ) {
|
|
|
|
// toggle individual class names
|
2010-11-09 16:09:07 +00:00
|
|
|
var className,
|
|
|
|
i = 0,
|
|
|
|
self = jQuery( this ),
|
2010-01-06 20:23:30 +00:00
|
|
|
state = stateVal,
|
2011-04-29 02:24:40 +00:00
|
|
|
classNames = value.split( rspace );
|
2010-01-06 20:08:07 +00:00
|
|
|
|
|
|
|
while ( (className = classNames[ i++ ]) ) {
|
|
|
|
// check each className given, space seperated list
|
2010-01-06 20:23:30 +00:00
|
|
|
state = isBool ? state : !self.hasClass( className );
|
|
|
|
self[ state ? "addClass" : "removeClass" ]( className );
|
2010-01-06 20:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( type === "undefined" || type === "boolean" ) {
|
|
|
|
if ( this.className ) {
|
|
|
|
// store className if set
|
2011-01-09 21:52:33 +00:00
|
|
|
jQuery._data( this, "__className__", this.className );
|
2010-01-06 20:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// toggle whole className
|
2011-01-09 21:52:33 +00:00
|
|
|
this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || "";
|
2010-01-06 20:08:07 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2009-03-18 21:15:38 +00:00
|
|
|
hasClass: function( selector ) {
|
2009-09-08 01:07:50 +00:00
|
|
|
var className = " " + selector + " ";
|
|
|
|
for ( var i = 0, l = this.length; i < l; i++ ) {
|
2011-06-22 12:50:44 +00:00
|
|
|
if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) {
|
2009-09-08 01:07:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2009-03-18 21:15:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
val: function( value ) {
|
2011-04-06 02:40:12 +00:00
|
|
|
var hooks, ret,
|
2011-04-02 21:05:04 +00:00
|
|
|
elem = this[0];
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2010-08-21 02:32:34 +00:00
|
|
|
if ( !arguments.length ) {
|
2009-03-18 21:15:38 +00:00
|
|
|
if ( elem ) {
|
2011-04-02 21:05:04 +00:00
|
|
|
hooks = jQuery.valHooks[ elem.nodeName.toLowerCase() ] || jQuery.valHooks[ elem.type ];
|
2009-03-18 21:15:38 +00:00
|
|
|
|
2011-04-17 22:15:20 +00:00
|
|
|
if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) {
|
2011-04-06 02:40:12 +00:00
|
|
|
return ret;
|
2009-03-18 21:15:38 +00:00
|
|
|
}
|
|
|
|
|
2011-05-20 15:03:33 +00:00
|
|
|
ret = elem.value;
|
|
|
|
|
2011-09-19 00:15:18 +00:00
|
|
|
return typeof ret === "string" ?
|
2011-05-20 15:03:33 +00:00
|
|
|
// handle most common string cases
|
2011-09-19 00:15:18 +00:00
|
|
|
ret.replace(rreturn, "") :
|
2011-05-20 15:03:33 +00:00
|
|
|
// handle cases where value is null/undef or number
|
|
|
|
ret == null ? "" : ret;
|
2009-03-18 21:15:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
var isFunction = jQuery.isFunction( value );
|
2009-03-18 21:15:38 +00:00
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
return this.each(function( i ) {
|
2011-04-06 02:40:12 +00:00
|
|
|
var self = jQuery(this), val;
|
2010-01-06 20:08:07 +00:00
|
|
|
|
2010-01-07 14:53:16 +00:00
|
|
|
if ( this.nodeType !== 1 ) {
|
|
|
|
return;
|
|
|
|
}
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2010-01-07 14:53:16 +00:00
|
|
|
if ( isFunction ) {
|
2011-04-02 21:05:04 +00:00
|
|
|
val = value.call( this, i, self.val() );
|
2011-04-06 02:40:12 +00:00
|
|
|
} else {
|
|
|
|
val = value;
|
2009-07-12 20:19:43 +00:00
|
|
|
}
|
2009-12-10 04:57:19 +00:00
|
|
|
|
2010-08-21 02:32:34 +00:00
|
|
|
// Treat null/undefined as ""; convert numbers to string
|
|
|
|
if ( val == null ) {
|
|
|
|
val = "";
|
|
|
|
} else if ( typeof val === "number" ) {
|
2010-01-07 14:53:16 +00:00
|
|
|
val += "";
|
2011-04-02 21:05:04 +00:00
|
|
|
} else if ( jQuery.isArray( val ) ) {
|
|
|
|
val = jQuery.map(val, function ( value ) {
|
2010-10-09 03:48:06 +00:00
|
|
|
return value == null ? "" : value + "";
|
|
|
|
});
|
2009-11-27 19:28:42 +00:00
|
|
|
}
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
hooks = jQuery.valHooks[ this.nodeName.toLowerCase() ] || jQuery.valHooks[ this.type ];
|
|
|
|
|
|
|
|
// If set returns undefined, fall back to normal setting
|
2011-05-03 18:48:36 +00:00
|
|
|
if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) {
|
2011-04-02 21:05:04 +00:00
|
|
|
this.value = val;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
jQuery.extend({
|
|
|
|
valHooks: {
|
|
|
|
option: {
|
|
|
|
get: function( elem ) {
|
|
|
|
// attributes.value is undefined in Blackberry 4.7 but
|
|
|
|
// uses .value. See #6932
|
|
|
|
var val = elem.attributes.value;
|
|
|
|
return !val || val.specified ? elem.value : elem.text;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
select: {
|
|
|
|
get: function( elem ) {
|
2011-05-07 15:48:42 +00:00
|
|
|
var value,
|
|
|
|
index = elem.selectedIndex,
|
2011-04-02 21:05:04 +00:00
|
|
|
values = [],
|
|
|
|
options = elem.options,
|
|
|
|
one = elem.type === "select-one";
|
|
|
|
|
|
|
|
// Nothing was selected
|
|
|
|
if ( index < 0 ) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through all the selected options
|
|
|
|
for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
|
|
|
|
var option = options[ i ];
|
|
|
|
|
|
|
|
// Don't return options that are disabled or in a disabled optgroup
|
|
|
|
if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) &&
|
|
|
|
(!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) {
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
// Get the specific value for the option
|
|
|
|
value = jQuery( option ).val();
|
|
|
|
|
|
|
|
// We don't need an array for one selects
|
|
|
|
if ( one ) {
|
|
|
|
return value;
|
|
|
|
}
|
2009-03-18 21:15:38 +00:00
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
// Multi-Selects return an array
|
|
|
|
values.push( value );
|
|
|
|
}
|
|
|
|
}
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
// Fixes Bug #2551 -- select.val() broken in IE after form.reset()
|
|
|
|
if ( one && !values.length && options.length ) {
|
|
|
|
return jQuery( options[ index ] ).val();
|
|
|
|
}
|
2009-03-18 21:15:38 +00:00
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
return values;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function( elem, value ) {
|
|
|
|
var values = jQuery.makeArray( value );
|
|
|
|
|
|
|
|
jQuery(elem).find("option").each(function() {
|
2010-01-07 14:53:16 +00:00
|
|
|
this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0;
|
2009-03-18 21:15:38 +00:00
|
|
|
});
|
|
|
|
|
2009-11-27 19:28:42 +00:00
|
|
|
if ( !values.length ) {
|
2011-04-02 21:05:04 +00:00
|
|
|
elem.selectedIndex = -1;
|
2009-11-27 19:28:42 +00:00
|
|
|
}
|
2011-04-02 21:05:04 +00:00
|
|
|
return values;
|
2009-11-27 19:28:42 +00:00
|
|
|
}
|
2011-04-02 21:05:04 +00:00
|
|
|
}
|
|
|
|
},
|
2009-03-18 21:15:38 +00:00
|
|
|
|
2009-12-10 05:28:33 +00:00
|
|
|
attrFn: {
|
|
|
|
val: true,
|
|
|
|
css: true,
|
|
|
|
html: true,
|
|
|
|
text: true,
|
|
|
|
data: true,
|
|
|
|
width: true,
|
|
|
|
height: true,
|
2009-12-17 17:23:04 +00:00
|
|
|
offset: true
|
2009-12-10 05:28:33 +00:00
|
|
|
},
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
attrFix: {
|
2011-03-25 05:46:29 +00:00
|
|
|
// Always normalize to ensure hook usage
|
2011-05-04 01:44:42 +00:00
|
|
|
tabindex: "tabIndex"
|
2011-03-07 03:47:40 +00:00
|
|
|
},
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2009-12-18 17:41:53 +00:00
|
|
|
attr: function( elem, name, value, pass ) {
|
2011-03-18 02:59:05 +00:00
|
|
|
var nType = elem.nodeType;
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2010-12-07 02:17:42 +00:00
|
|
|
// don't get/set attributes on text, comment and attribute nodes
|
2011-03-18 02:59:05 +00:00
|
|
|
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
|
2009-03-18 21:15:38 +00:00
|
|
|
return undefined;
|
2009-11-27 19:28:42 +00:00
|
|
|
}
|
2009-12-10 05:28:33 +00:00
|
|
|
|
2009-12-18 17:41:53 +00:00
|
|
|
if ( pass && name in jQuery.attrFn ) {
|
2011-03-26 03:36:07 +00:00
|
|
|
return jQuery( elem )[ name ]( value );
|
2009-09-15 17:23:26 +00:00
|
|
|
}
|
2011-05-10 04:27:52 +00:00
|
|
|
|
|
|
|
// Fallback to prop when attributes are not supported
|
|
|
|
if ( !("getAttribute" in elem) ) {
|
|
|
|
return jQuery.prop( elem, name, value );
|
|
|
|
}
|
|
|
|
|
2011-05-05 16:17:08 +00:00
|
|
|
var ret, hooks,
|
2011-03-26 03:03:02 +00:00
|
|
|
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-03-11 19:57:37 +00:00
|
|
|
// Normalize the name if needed
|
2011-06-13 14:02:13 +00:00
|
|
|
if ( notxml ) {
|
|
|
|
name = jQuery.attrFix[ name ] || name;
|
2011-03-12 02:28:42 +00:00
|
|
|
|
2011-06-13 14:02:13 +00:00
|
|
|
hooks = jQuery.attrHooks[ name ];
|
2011-05-05 16:17:08 +00:00
|
|
|
|
2011-06-13 14:02:13 +00:00
|
|
|
if ( !hooks ) {
|
|
|
|
// Use boolHook for boolean attributes
|
|
|
|
if ( rboolean.test( name ) ) {
|
|
|
|
hooks = boolHook;
|
2011-05-07 18:49:04 +00:00
|
|
|
|
2011-08-04 20:34:59 +00:00
|
|
|
// Use nodeHook if available( IE6/7 )
|
|
|
|
} else if ( nodeHook ) {
|
|
|
|
hooks = nodeHook;
|
2011-06-13 14:02:13 +00:00
|
|
|
}
|
2011-05-05 16:17:08 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-12 02:28:42 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
if ( value !== undefined ) {
|
2011-03-12 02:28:42 +00:00
|
|
|
|
2011-05-05 16:17:08 +00:00
|
|
|
if ( value === null ) {
|
2011-03-12 02:28:42 +00:00
|
|
|
jQuery.removeAttr( elem, name );
|
2011-03-08 17:07:05 +00:00
|
|
|
return undefined;
|
2011-03-12 02:28:42 +00:00
|
|
|
|
2011-03-26 04:15:25 +00:00
|
|
|
} else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) {
|
2011-03-07 03:47:40 +00:00
|
|
|
return ret;
|
2011-03-26 01:13:25 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
} else {
|
2011-04-02 18:23:33 +00:00
|
|
|
elem.setAttribute( name, "" + value );
|
2011-03-07 03:47:40 +00:00
|
|
|
return value;
|
2010-11-09 23:36:53 +00:00
|
|
|
}
|
2011-03-12 02:28:42 +00:00
|
|
|
|
2011-05-18 15:46:22 +00:00
|
|
|
} else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) {
|
|
|
|
return ret;
|
2011-05-04 01:44:42 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
} else {
|
2011-03-12 02:28:42 +00:00
|
|
|
|
2011-05-05 16:17:08 +00:00
|
|
|
ret = elem.getAttribute( name );
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2011-05-05 16:17:08 +00:00
|
|
|
// Non-existent attributes return null, we normalize to undefined
|
|
|
|
return ret === null ?
|
|
|
|
undefined :
|
|
|
|
ret;
|
2011-03-07 03:47:40 +00:00
|
|
|
}
|
|
|
|
},
|
2011-05-04 04:31:01 +00:00
|
|
|
|
2011-09-20 01:07:07 +00:00
|
|
|
removeAttr: function( elem, value ) {
|
|
|
|
var propName, attrNames, name, l,
|
|
|
|
i = 0;
|
|
|
|
|
2011-04-03 20:49:48 +00:00
|
|
|
if ( elem.nodeType === 1 ) {
|
2011-09-20 01:07:07 +00:00
|
|
|
attrNames = (value || "").split( rspace );
|
|
|
|
l = attrNames.length;
|
2011-08-25 19:33:38 +00:00
|
|
|
|
2011-09-20 01:07:07 +00:00
|
|
|
for ( ; i < l; i++ ) {
|
|
|
|
name = attrNames[ i ];
|
|
|
|
name = jQuery.attrFix[ name ] || name;
|
2011-05-04 15:29:38 +00:00
|
|
|
|
2011-09-20 01:07:07 +00:00
|
|
|
// See #9699 for explanation of this approach (setting first, then removal)
|
|
|
|
jQuery.attr( elem, name, "" );
|
|
|
|
elem.removeAttribute( name );
|
|
|
|
|
|
|
|
// Set corresponding property to false for boolean attributes
|
|
|
|
if ( rboolean.test( name ) && (propName = jQuery.propFix[ name ] || name) in elem ) {
|
|
|
|
elem[ propName ] = false;
|
|
|
|
}
|
2011-05-04 15:29:38 +00:00
|
|
|
}
|
2011-03-14 01:27:45 +00:00
|
|
|
}
|
2011-03-07 03:47:40 +00:00
|
|
|
},
|
2011-03-12 02:28:42 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
attrHooks: {
|
|
|
|
type: {
|
|
|
|
set: function( elem, value ) {
|
|
|
|
// We can't allow the type property to be changed (since it causes problems in IE)
|
|
|
|
if ( rtype.test( elem.nodeName ) && elem.parentNode ) {
|
|
|
|
jQuery.error( "type property can't be changed" );
|
2011-04-22 01:33:09 +00:00
|
|
|
} else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
|
|
|
|
// Setting the type on a radio button after the value resets the value in IE6-9
|
|
|
|
// Reset value to it's default in case type is set after value
|
2011-04-22 04:27:52 +00:00
|
|
|
// This is for element creation
|
2011-05-10 04:27:52 +00:00
|
|
|
var val = elem.value;
|
2011-04-22 01:33:09 +00:00
|
|
|
elem.setAttribute( "type", value );
|
|
|
|
if ( val ) {
|
|
|
|
elem.value = val;
|
|
|
|
}
|
|
|
|
return value;
|
2010-11-09 23:36:53 +00:00
|
|
|
}
|
2009-03-22 23:25:03 +00:00
|
|
|
}
|
2011-03-07 03:47:40 +00:00
|
|
|
},
|
2011-05-26 20:51:41 +00:00
|
|
|
// Use the value property for back compat
|
2011-08-04 20:34:59 +00:00
|
|
|
// Use the nodeHook for button elements in IE6/7 (#1954)
|
2011-05-26 20:51:41 +00:00
|
|
|
value: {
|
|
|
|
get: function( elem, name ) {
|
2011-08-04 20:34:59 +00:00
|
|
|
if ( nodeHook && jQuery.nodeName( elem, "button" ) ) {
|
|
|
|
return nodeHook.get( elem, name );
|
2011-05-26 20:51:41 +00:00
|
|
|
}
|
|
|
|
return name in elem ?
|
|
|
|
elem.value :
|
|
|
|
null;
|
|
|
|
},
|
|
|
|
set: function( elem, value, name ) {
|
2011-08-04 20:34:59 +00:00
|
|
|
if ( nodeHook && jQuery.nodeName( elem, "button" ) ) {
|
|
|
|
return nodeHook.set( elem, value, name );
|
2011-05-26 20:51:41 +00:00
|
|
|
}
|
|
|
|
// Does not return so that setAttribute is also used
|
|
|
|
elem.value = value;
|
|
|
|
}
|
2011-03-07 03:47:40 +00:00
|
|
|
}
|
|
|
|
},
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-05-04 01:44:42 +00:00
|
|
|
propFix: {
|
2011-05-04 04:31:01 +00:00
|
|
|
tabindex: "tabIndex",
|
|
|
|
readonly: "readOnly",
|
|
|
|
"for": "htmlFor",
|
|
|
|
"class": "className",
|
|
|
|
maxlength: "maxLength",
|
|
|
|
cellspacing: "cellSpacing",
|
|
|
|
cellpadding: "cellPadding",
|
|
|
|
rowspan: "rowSpan",
|
|
|
|
colspan: "colSpan",
|
|
|
|
usemap: "useMap",
|
2011-05-05 16:52:04 +00:00
|
|
|
frameborder: "frameBorder",
|
|
|
|
contenteditable: "contentEditable"
|
2011-05-04 01:44:42 +00:00
|
|
|
},
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
prop: function( elem, name, value ) {
|
2011-03-18 02:59:05 +00:00
|
|
|
var nType = elem.nodeType;
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-03-10 01:20:53 +00:00
|
|
|
// don't get/set properties on text, comment and attribute nodes
|
2011-03-18 02:59:05 +00:00
|
|
|
if ( !elem || nType === 3 || nType === 8 || nType === 2 ) {
|
2011-03-10 01:20:53 +00:00
|
|
|
return undefined;
|
|
|
|
}
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-03-18 02:59:05 +00:00
|
|
|
var ret, hooks,
|
|
|
|
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-06-13 14:02:13 +00:00
|
|
|
if ( notxml ) {
|
|
|
|
// Fix name and attach hooks
|
|
|
|
name = jQuery.propFix[ name ] || name;
|
|
|
|
hooks = jQuery.propHooks[ name ];
|
|
|
|
}
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
if ( value !== undefined ) {
|
2011-03-26 04:18:02 +00:00
|
|
|
if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) {
|
2011-03-07 03:47:40 +00:00
|
|
|
return ret;
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
} else {
|
|
|
|
return (elem[ name ] = value);
|
2010-11-09 23:36:53 +00:00
|
|
|
}
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
} else {
|
2011-08-04 19:47:53 +00:00
|
|
|
if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
|
2011-03-07 03:47:40 +00:00
|
|
|
return ret;
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
} else {
|
|
|
|
return elem[ name ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2011-09-19 00:15:18 +00:00
|
|
|
|
2011-08-04 19:47:53 +00:00
|
|
|
propHooks: {
|
|
|
|
tabIndex: {
|
|
|
|
get: function( elem ) {
|
|
|
|
// elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set
|
|
|
|
// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
|
2011-08-04 20:34:59 +00:00
|
|
|
var attributeNode = elem.getAttributeNode("tabindex");
|
2011-08-04 19:47:53 +00:00
|
|
|
|
|
|
|
return attributeNode && attributeNode.specified ?
|
|
|
|
parseInt( attributeNode.value, 10 ) :
|
|
|
|
rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ?
|
|
|
|
0 :
|
|
|
|
undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-03-07 03:47:40 +00:00
|
|
|
});
|
2010-08-24 14:28:47 +00:00
|
|
|
|
2011-08-04 19:47:53 +00:00
|
|
|
// Add the tabindex propHook to attrHooks for back-compat
|
|
|
|
jQuery.attrHooks.tabIndex = jQuery.propHooks.tabIndex;
|
|
|
|
|
2011-05-05 16:17:08 +00:00
|
|
|
// Hook for boolean attributes
|
|
|
|
boolHook = {
|
|
|
|
get: function( elem, name ) {
|
|
|
|
// Align boolean attributes with corresponding properties
|
2011-07-09 18:41:58 +00:00
|
|
|
// Fall back to attribute presence where some booleans are not supported
|
2011-09-14 18:25:14 +00:00
|
|
|
var attrNode,
|
|
|
|
property = jQuery.prop( elem, name );
|
|
|
|
return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
|
2011-05-05 16:17:08 +00:00
|
|
|
name.toLowerCase() :
|
|
|
|
undefined;
|
|
|
|
},
|
|
|
|
set: function( elem, value, name ) {
|
2011-05-07 18:49:04 +00:00
|
|
|
var propName;
|
2011-05-05 16:17:08 +00:00
|
|
|
if ( value === false ) {
|
|
|
|
// Remove boolean attributes when set to false
|
|
|
|
jQuery.removeAttr( elem, name );
|
|
|
|
} else {
|
|
|
|
// value is true since we know at this point it's type boolean and not false
|
|
|
|
// Set boolean attributes to the same name and set the DOM property
|
2011-05-07 18:49:04 +00:00
|
|
|
propName = jQuery.propFix[ name ] || name;
|
|
|
|
if ( propName in elem ) {
|
|
|
|
// Only set the IDL specifically if it already exists on the element
|
2011-05-13 17:39:38 +00:00
|
|
|
elem[ propName ] = true;
|
2011-05-07 18:49:04 +00:00
|
|
|
}
|
|
|
|
|
2011-05-05 16:17:08 +00:00
|
|
|
elem.setAttribute( name, name.toLowerCase() );
|
|
|
|
}
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-03-12 02:28:42 +00:00
|
|
|
// IE6/7 do not support getting/setting some attributes with get/setAttribute
|
|
|
|
if ( !jQuery.support.getSetAttribute ) {
|
2011-09-12 23:40:14 +00:00
|
|
|
|
|
|
|
fixSpecified = {
|
|
|
|
name: true,
|
|
|
|
id: true
|
|
|
|
};
|
|
|
|
|
2011-08-04 20:34:59 +00:00
|
|
|
// Use this for any attribute in IE6/7
|
|
|
|
// This fixes almost every IE6/7 issue
|
|
|
|
nodeHook = jQuery.valHooks.button = {
|
2011-03-26 04:15:25 +00:00
|
|
|
get: function( elem, name ) {
|
2011-05-01 21:09:50 +00:00
|
|
|
var ret;
|
|
|
|
ret = elem.getAttributeNode( name );
|
2011-09-12 23:40:14 +00:00
|
|
|
return ret && (fixSpecified[ name ] ? ret.nodeValue !== "" : ret.specified) ?
|
2011-03-26 04:15:25 +00:00
|
|
|
ret.nodeValue :
|
|
|
|
undefined;
|
|
|
|
},
|
|
|
|
set: function( elem, value, name ) {
|
2011-08-04 20:34:59 +00:00
|
|
|
// Set the existing or create a new attribute node
|
2011-03-26 04:15:25 +00:00
|
|
|
var ret = elem.getAttributeNode( name );
|
2011-08-04 20:34:59 +00:00
|
|
|
if ( !ret ) {
|
|
|
|
ret = document.createAttribute( name );
|
|
|
|
elem.setAttributeNode( ret );
|
2011-03-26 02:55:11 +00:00
|
|
|
}
|
2011-08-04 20:34:59 +00:00
|
|
|
return (ret.nodeValue = value + "");
|
2011-03-26 04:15:25 +00:00
|
|
|
}
|
2011-03-13 20:29:33 +00:00
|
|
|
};
|
2011-04-09 21:25:06 +00:00
|
|
|
|
|
|
|
// Set width and height to auto instead of 0 on empty string( Bug #8150 )
|
|
|
|
// This is for removals
|
|
|
|
jQuery.each([ "width", "height" ], function( i, name ) {
|
|
|
|
jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
|
|
|
|
set: function( elem, value ) {
|
|
|
|
if ( value === "" ) {
|
|
|
|
elem.setAttribute( name, "auto" );
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2011-03-12 02:28:42 +00:00
|
|
|
}
|
|
|
|
|
2011-03-08 17:07:05 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
// Some attributes require a special call on IE
|
|
|
|
if ( !jQuery.support.hrefNormalized ) {
|
2011-04-11 23:30:20 +00:00
|
|
|
jQuery.each([ "href", "src", "width", "height" ], function( i, name ) {
|
2011-03-07 03:47:40 +00:00
|
|
|
jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], {
|
|
|
|
get: function( elem ) {
|
2011-04-09 21:25:06 +00:00
|
|
|
var ret = elem.getAttribute( name, 2 );
|
|
|
|
return ret === null ? undefined : ret;
|
2011-03-07 03:47:40 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !jQuery.support.style ) {
|
|
|
|
jQuery.attrHooks.style = {
|
|
|
|
get: function( elem ) {
|
2011-04-03 22:18:32 +00:00
|
|
|
// Return undefined in the case of empty string
|
2011-04-03 22:47:44 +00:00
|
|
|
// Normalize to lowercase since IE uppercases css property names
|
|
|
|
return elem.style.cssText.toLowerCase() || undefined;
|
2011-03-07 03:47:40 +00:00
|
|
|
},
|
|
|
|
set: function( elem, value ) {
|
|
|
|
return (elem.style.cssText = "" + value);
|
2009-03-18 21:15:38 +00:00
|
|
|
}
|
2011-03-07 03:47:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Safari mis-reports the default selected property of an option
|
|
|
|
// Accessing the parent's selectedIndex property fixes it
|
|
|
|
if ( !jQuery.support.optSelected ) {
|
2011-04-02 18:23:33 +00:00
|
|
|
jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, {
|
2011-03-07 03:47:40 +00:00
|
|
|
get: function( elem ) {
|
|
|
|
var parent = elem.parentNode;
|
2011-04-02 18:23:33 +00:00
|
|
|
|
2011-03-07 03:47:40 +00:00
|
|
|
if ( parent ) {
|
|
|
|
parent.selectedIndex;
|
|
|
|
|
|
|
|
// Make sure that it also works with optgroups, see #5701
|
|
|
|
if ( parent.parentNode ) {
|
|
|
|
parent.parentNode.selectedIndex;
|
|
|
|
}
|
|
|
|
}
|
2011-08-04 19:47:53 +00:00
|
|
|
return null;
|
2010-11-13 13:39:28 +00:00
|
|
|
}
|
2011-04-02 18:23:33 +00:00
|
|
|
});
|
2011-03-07 03:47:40 +00:00
|
|
|
}
|
2010-09-08 16:00:29 +00:00
|
|
|
|
2011-04-02 21:05:04 +00:00
|
|
|
// Radios and checkboxes getter/setter
|
|
|
|
if ( !jQuery.support.checkOn ) {
|
|
|
|
jQuery.each([ "radio", "checkbox" ], function() {
|
|
|
|
jQuery.valHooks[ this ] = {
|
|
|
|
get: function( elem ) {
|
|
|
|
// Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified
|
|
|
|
return elem.getAttribute("value") === null ? "on" : elem.value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
jQuery.each([ "radio", "checkbox" ], function() {
|
|
|
|
jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], {
|
|
|
|
set: function( elem, value ) {
|
|
|
|
if ( jQuery.isArray( value ) ) {
|
|
|
|
return (elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2010-09-08 16:00:29 +00:00
|
|
|
})( jQuery );
|