2012-12-08 21:28:10 +00:00
|
|
|
var nodeHook, boolHook,
|
2012-07-23 02:23:32 +00:00
|
|
|
rclass = /[\t\r\n]/g,
|
2009-12-18 16:27:56 +00:00
|
|
|
rreturn = /\r/g,
|
2012-11-26 08:20:43 +00:00
|
|
|
rfocusable = /^(?:input|select|textarea|button|object)$/i,
|
|
|
|
rclickable = /^(?:a|area)$/i,
|
2012-12-09 05:26:24 +00:00
|
|
|
rboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,
|
|
|
|
ruseDefault = /^(?:checked|selected)$/i,
|
|
|
|
getSetAttribute = jQuery.support.getSetAttribute,
|
|
|
|
getSetInput = jQuery.support.input;
|
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 ) {
|
2011-12-06 20:25:38 +00:00
|
|
|
return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 );
|
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 ) {
|
2011-12-06 20:25:38 +00:00
|
|
|
return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 );
|
2011-03-07 03:47:40 +00:00
|
|
|
},
|
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 ) {
|
2012-11-26 08:20:43 +00:00
|
|
|
var classes, elem, cur, clazz, j,
|
|
|
|
i = 0,
|
|
|
|
len = this.length,
|
|
|
|
proceed = typeof value === "string" && value;
|
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 ) {
|
2012-11-26 08:20:43 +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
|
|
|
|
2012-11-26 08:20:43 +00:00
|
|
|
if ( proceed ) {
|
|
|
|
// The disjunction here is for better compressibility (see removeClass)
|
|
|
|
classes = ( value || "" ).match( core_rnotwhite ) || [];
|
2009-09-08 01:07:50 +00:00
|
|
|
|
2012-11-26 08:20:43 +00:00
|
|
|
for ( ; i < len; i++ ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
elem = this[ i ];
|
2012-11-27 14:46:06 +00:00
|
|
|
cur = elem.nodeType === 1 && ( elem.className ?
|
|
|
|
( " " + elem.className + " " ).replace( rclass, " " ) :
|
|
|
|
" "
|
|
|
|
);
|
2009-09-08 01:07:50 +00:00
|
|
|
|
2012-11-27 14:46:06 +00:00
|
|
|
if ( cur ) {
|
2012-11-26 08:20:43 +00:00
|
|
|
j = 0;
|
|
|
|
while ( (clazz = classes[j++]) ) {
|
|
|
|
if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
|
|
|
|
cur += clazz + " ";
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-26 08:20:43 +00:00
|
|
|
elem.className = jQuery.trim( cur );
|
|
|
|
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
removeClass: function( value ) {
|
2012-11-26 08:20:43 +00:00
|
|
|
var classes, elem, cur, clazz, j,
|
|
|
|
i = 0,
|
|
|
|
len = this.length,
|
|
|
|
proceed = arguments.length === 0 || typeof value === "string" && value;
|
2011-06-08 00:54:11 +00:00
|
|
|
|
|
|
|
if ( jQuery.isFunction( value ) ) {
|
|
|
|
return this.each(function( j ) {
|
2012-11-26 08:20:43 +00:00
|
|
|
jQuery( this ).removeClass( value.call( this, j, this.className ) );
|
2009-12-10 05:15:49 +00:00
|
|
|
});
|
|
|
|
}
|
2012-11-26 08:20:43 +00:00
|
|
|
if ( proceed ) {
|
|
|
|
classes = ( value || "" ).match( core_rnotwhite ) || [];
|
2009-09-08 01:07:50 +00:00
|
|
|
|
2012-11-26 08:20:43 +00:00
|
|
|
for ( ; i < len; i++ ) {
|
2011-06-08 00:54:11 +00:00
|
|
|
elem = this[ i ];
|
2012-11-27 14:46:06 +00:00
|
|
|
// This expression is here for better compressibility (see addClass)
|
|
|
|
cur = elem.nodeType === 1 && ( elem.className ?
|
|
|
|
( " " + elem.className + " " ).replace( rclass, " " ) :
|
|
|
|
""
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( cur ) {
|
2012-11-26 08:20:43 +00:00
|
|
|
j = 0;
|
|
|
|
while ( (clazz = classes[j++]) ) {
|
|
|
|
// Remove *all* instances
|
|
|
|
while ( cur.indexOf( " " + clazz + " " ) >= 0 ) {
|
|
|
|
cur = cur.replace( " " + clazz + " ", " " );
|
2012-06-23 23:38:27 +00:00
|
|
|
}
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
2012-11-26 08:20:43 +00:00
|
|
|
elem.className = value ? jQuery.trim( cur ) : "";
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2012-11-26 08:20:43 +00:00
|
|
|
classNames = value.match( core_rnotwhite ) || [];
|
2010-01-06 20:08:07 +00:00
|
|
|
|
|
|
|
while ( (className = classNames[ i++ ]) ) {
|
2012-07-11 13:46:21 +00:00
|
|
|
// check each className given, space separated 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
|
|
|
}
|
|
|
|
|
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
|
|
|
// Toggle whole class name
|
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
|
|
|
}
|
|
|
|
|
Implement expectation test instead of using _removeData. Close gh-997.
* Removed inline usage of QUnit.reset() because it is messing with the
expectation model as reset does .empty() which does a recursive cleanData
on everything in #qunit-fixture, so any expectJqData above .reset() would
fail negatively.
Instead of calling reset inline, either updated the following assertions to
take previous assertions' state into account, or broke the test() up into
2 tests at the point where it would call QUnit.reset.
* After introducing the new memory leak discovery a whole bunch of tests were
failing as they didn't clean up everything. However I didn't (yet) add
QUnit.expectJqData calls all over the place because in most if not all of
these cases it is valid data storage. For example in test "data()", there
will be an internal data key for "parsedAttrs". This particular test isn't
intending to test for memory leaks, so therefor I made the new discovery
system only push failures when the test contains at least 1 call to
QUnit.expectJqData.
When not, we'll assume that whatever data is being stored is acceptable
because the relevant elements still exist in the DOM anyway (QUnit.reset
will remove the elements and clean up the data automatically).
I did add a "Always check jQuery.data" mode in the test suite that will
trigger it everywhere. Maybe one day we'll include a call to everywhere,
but for now I'm keeping the status quo: Only consider data left in storage
to be a problem if the test says so ("opt-in").
* Had to move #fx-tests inside the fixture because ".remove()" test would
otherwise remove stuff permanently and cause random other tests to fail
as "#hide div" would yield an empty collection.
(Why wasn't this in the fixture in the first place?)
As a result moving fx-tests into the fixture a whole bunch of tests failed
that relied on arbitrary stuff about the document-wide or fixture-wide
state (e.g. number of divs etc.). So I had to adjust various tests to
limit their sample data to not be so variable and unlimited...
* Moved out tests for expando cleanup into a separate test.
* Fixed implied global variable 'pass' in effects.js that was causing
"TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
uses a global variable "pass = function () {};" ...
* Removed spurious calls to _removeData. The new test exposed various failures
e.g. where div[0] isn't being assigned any data anyway.
(queue.js and attributes.js toggleClass).
* Removed spurious clean up at the bottom of test() functions that are
already covered by the teardown (calling QUnit.reset or removeClass to
supposedly undo any changes).
* Documented the parentheses-less magic line in toggleClass. It appeared that
it would always keep the current class name if there was any (since the
assignment started with "this.className || ...".
Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
Only added the comment for now, though I prefer clarity with logical
operators, I'd rather not face the yayMinPD[1] in this test-related commit.
* Updated QUnit urlConfig to the new format (raw string is deprecated).
* Clean up odd htmlentities in test titles, QUnit escapes this.
(^\s+test\(.*)(>\;) → $1>
(^\s+test\(.*)(<\;) → $1<
[1] jQuery MinJsGz Release Police Department (do the same, download less)
2012-10-17 08:33:47 +00:00
|
|
|
// If the element has a class name or if we're passed "false",
|
|
|
|
// then remove the whole classname (if there was one, the above saved it).
|
|
|
|
// Otherwise bring back whatever was previously saved (if anything),
|
|
|
|
// falling back to the empty string if nothing was stored.
|
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 ) {
|
2011-10-17 20:45:27 +00:00
|
|
|
var className = " " + selector + " ",
|
|
|
|
i = 0,
|
|
|
|
l = this.length;
|
|
|
|
for ( ; i < l; i++ ) {
|
2012-09-18 21:39:44 +00:00
|
|
|
if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) {
|
2009-09-08 01:07:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2009-03-18 21:15:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
val: function( value ) {
|
2011-10-17 20:45:27 +00:00
|
|
|
var hooks, ret, isFunction,
|
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 ) {
|
2012-02-10 16:14:13 +00:00
|
|
|
hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ];
|
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
|
|
|
}
|
|
|
|
|
2011-11-14 17:31:28 +00:00
|
|
|
return;
|
2009-03-18 21:15:38 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 20:45:27 +00:00
|
|
|
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 ) {
|
2012-07-10 01:38:11 +00:00
|
|
|
var val,
|
|
|
|
self = jQuery(this);
|
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
|
|
|
|
2012-02-10 16:14:13 +00:00
|
|
|
hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
|
2011-04-02 21:05:04 +00:00
|
|
|
|
|
|
|
// 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: {
|
2012-07-12 19:28:58 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
},
|
2011-04-02 21:05:04 +00:00
|
|
|
select: {
|
|
|
|
get: function( elem ) {
|
2012-09-21 15:53:03 +00:00
|
|
|
var value, option,
|
2011-04-02 21:05:04 +00:00
|
|
|
options = elem.options,
|
2012-09-21 15:53:03 +00:00
|
|
|
index = elem.selectedIndex,
|
|
|
|
one = elem.type === "select-one" || index < 0,
|
|
|
|
values = one ? null : [],
|
|
|
|
max = one ? index + 1 : options.length,
|
|
|
|
i = index < 0 ?
|
|
|
|
max :
|
|
|
|
one ? index : 0;
|
2011-04-02 21:05:04 +00:00
|
|
|
|
|
|
|
// Loop through all the selected options
|
2011-10-17 20:45:27 +00:00
|
|
|
for ( ; i < max; i++ ) {
|
|
|
|
option = options[ i ];
|
2011-04-02 21:05:04 +00:00
|
|
|
|
2012-09-21 15:53:03 +00:00
|
|
|
// oldIE doesn't update selected after form reset (#2551)
|
|
|
|
if ( ( option.selected || i === index ) &&
|
|
|
|
// Don't return options that are disabled or in a disabled optgroup
|
|
|
|
( 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
|
|
|
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
|
|
|
|
2012-11-05 22:21:24 +00:00
|
|
|
attr: function( elem, name, value ) {
|
2011-10-17 20:45:27 +00:00
|
|
|
var ret, hooks, notxml,
|
|
|
|
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 ) {
|
2011-11-14 17:31:28 +00:00
|
|
|
return;
|
2009-11-27 19:28:42 +00:00
|
|
|
}
|
2009-12-10 05:28:33 +00:00
|
|
|
|
2011-05-10 04:27:52 +00:00
|
|
|
// Fallback to prop when attributes are not supported
|
2011-11-14 17:31:28 +00:00
|
|
|
if ( typeof elem.getAttribute === "undefined" ) {
|
2011-05-10 04:27:52 +00:00
|
|
|
return jQuery.prop( elem, name, value );
|
|
|
|
}
|
|
|
|
|
2011-10-17 20:45:27 +00:00
|
|
|
notxml = nType !== 1 || !jQuery.isXMLDoc( elem );
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-10-22 20:03:57 +00:00
|
|
|
// All attributes are lowercase
|
|
|
|
// Grab necessary hook if one is defined
|
2011-06-13 14:02:13 +00:00
|
|
|
if ( notxml ) {
|
2011-10-06 21:17:51 +00:00
|
|
|
name = name.toLowerCase();
|
2011-10-27 19:28:14 +00:00
|
|
|
hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook );
|
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 );
|
|
|
|
|
2012-11-05 22:21:24 +00:00
|
|
|
} else if ( hooks && notxml && "set" in hooks && (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 {
|
2012-09-18 21:39:44 +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
|
|
|
|
2012-11-05 22:21:24 +00:00
|
|
|
} else if ( hooks && notxml && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) {
|
2011-05-18 15:46:22 +00:00
|
|
|
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
|
2012-11-27 14:53:30 +00:00
|
|
|
return ret == null ?
|
2011-05-05 16:17:08 +00:00
|
|
|
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 ) {
|
2012-12-09 05:26:24 +00:00
|
|
|
var name, propName,
|
2012-11-26 08:20:43 +00:00
|
|
|
i = 0,
|
|
|
|
attrNames = value && value.match( core_rnotwhite );
|
2011-05-04 15:29:38 +00:00
|
|
|
|
2012-11-26 08:20:43 +00:00
|
|
|
if ( attrNames && elem.nodeType === 1 ) {
|
|
|
|
while ( (name = attrNames[i++]) ) {
|
|
|
|
propName = jQuery.propFix[ name ] || name;
|
2012-12-09 05:26:24 +00:00
|
|
|
|
|
|
|
// Boolean attributes get special treatment (#10870)
|
|
|
|
if ( rboolean.test( name ) ) {
|
|
|
|
// Set corresponding property to false for boolean attributes
|
|
|
|
// Also clear defaultChecked/defaultSelected (if appropriate) for IE<8
|
|
|
|
if ( !getSetAttribute && ruseDefault.test( name ) ) {
|
|
|
|
elem[ jQuery.camelCase( "default-" + name ) ] =
|
|
|
|
elem[ propName ] = false;
|
|
|
|
} else {
|
|
|
|
elem[ propName ] = false;
|
|
|
|
}
|
2011-09-20 01:07:07 +00:00
|
|
|
|
2012-11-26 08:20:43 +00:00
|
|
|
// See #9699 for explanation of this approach (setting first, then removal)
|
2012-12-09 05:26:24 +00:00
|
|
|
} else {
|
2012-11-26 08:20:43 +00:00
|
|
|
jQuery.attr( elem, name, "" );
|
|
|
|
}
|
2011-11-14 17:24:58 +00:00
|
|
|
|
2012-12-09 05:26:24 +00:00
|
|
|
elem.removeAttribute( getSetAttribute ? name : propName );
|
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 ) {
|
2012-12-12 04:03:12 +00:00
|
|
|
if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) {
|
2011-04-22 01:33:09 +00:00
|
|
|
// Setting the type on a radio button after the value resets the value in IE6-9
|
2012-12-12 04:03:12 +00:00
|
|
|
// Reset value to default in case type is set after value during 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-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-10-17 20:45:27 +00:00
|
|
|
var ret, hooks, notxml,
|
|
|
|
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-11-14 17:31:28 +00:00
|
|
|
return;
|
2011-03-10 01:20:53 +00:00
|
|
|
}
|
2011-05-10 04:27:52 +00:00
|
|
|
|
2011-10-17 20:45:27 +00:00
|
|
|
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 {
|
2011-10-27 19:28:14 +00:00
|
|
|
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-05-05 16:17:08 +00:00
|
|
|
// Hook for boolean attributes
|
|
|
|
boolHook = {
|
|
|
|
get: function( elem, name ) {
|
2012-12-09 05:26:24 +00:00
|
|
|
var
|
|
|
|
// Use .prop to determine if this attribute is understood as boolean
|
|
|
|
prop = jQuery.prop( elem, name ),
|
|
|
|
|
|
|
|
// Fetch it accordingly
|
|
|
|
attr = typeof prop === "boolean" && elem.getAttribute( name ),
|
|
|
|
detail = typeof prop === "boolean" ?
|
|
|
|
|
|
|
|
getSetInput && getSetAttribute ?
|
|
|
|
attr != null :
|
|
|
|
// oldIE fabricates an empty string for missing boolean attributes
|
|
|
|
// and conflates checked/selected into attroperties
|
|
|
|
ruseDefault.test( name ) ?
|
|
|
|
elem[ jQuery.camelCase( "default-" + name ) ] :
|
|
|
|
!!attr :
|
|
|
|
|
|
|
|
// fetch an attribute node for properties not recognized as boolean
|
|
|
|
elem.getAttributeNode( name );
|
|
|
|
|
|
|
|
return detail && detail.value !== false ?
|
2011-05-05 16:17:08 +00:00
|
|
|
name.toLowerCase() :
|
|
|
|
undefined;
|
|
|
|
},
|
|
|
|
set: function( elem, value, name ) {
|
|
|
|
if ( value === false ) {
|
|
|
|
// Remove boolean attributes when set to false
|
|
|
|
jQuery.removeAttr( elem, name );
|
2012-12-09 05:26:24 +00:00
|
|
|
} else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) {
|
|
|
|
// IE<8 needs the *property* name
|
|
|
|
elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name );
|
2011-05-07 18:49:04 +00:00
|
|
|
|
2012-12-09 05:26:24 +00:00
|
|
|
// Use defaultChecked and defaultSelected for oldIE
|
|
|
|
} else {
|
2012-12-16 15:39:19 +00:00
|
|
|
elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true;
|
2011-05-05 16:17:08 +00:00
|
|
|
}
|
2012-12-09 05:26:24 +00:00
|
|
|
|
2011-05-05 16:17:08 +00:00
|
|
|
return name;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-08 21:28:10 +00:00
|
|
|
// fix oldIE value attroperty
|
2012-12-09 05:26:24 +00:00
|
|
|
if ( !getSetInput || !getSetAttribute ) {
|
2012-12-08 21:28:10 +00:00
|
|
|
jQuery.attrHooks.value = {
|
|
|
|
get: function( elem, name ) {
|
|
|
|
var ret = elem.getAttributeNode( name );
|
|
|
|
return jQuery.nodeName( elem, "input" ) ?
|
2011-09-12 23:40:14 +00:00
|
|
|
|
2012-12-08 21:28:10 +00:00
|
|
|
// Ignore the value *property* by using defaultValue
|
|
|
|
elem.defaultValue :
|
|
|
|
|
|
|
|
ret && ret.specified ? ret.value : undefined;
|
|
|
|
},
|
|
|
|
set: function( elem, value, name ) {
|
|
|
|
if ( jQuery.nodeName( elem, "input" ) ) {
|
|
|
|
// Does not return so that setAttribute is also used
|
|
|
|
elem.defaultValue = value;
|
|
|
|
} else {
|
|
|
|
// Use nodeHook if defined (#1954); otherwise setAttribute is fine
|
|
|
|
return nodeHook && nodeHook.set( elem, value, name );
|
|
|
|
}
|
|
|
|
}
|
2011-09-12 23:40:14 +00:00
|
|
|
};
|
2012-12-08 21:28:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IE6/7 do not support getting/setting some attributes with get/setAttribute
|
|
|
|
if ( !getSetAttribute ) {
|
2011-09-12 23:40:14 +00:00
|
|
|
|
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 ) {
|
2012-12-08 21:28:10 +00:00
|
|
|
var ret = elem.getAttributeNode( name );
|
|
|
|
return ret && ( name === "id" || name === "name" || name === "coords" ? ret.value !== "" : ret.specified ) ?
|
2012-07-03 01:35:00 +00:00
|
|
|
ret.value :
|
2011-03-26 04:15:25 +00:00
|
|
|
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 ) {
|
2012-12-08 21:28:10 +00:00
|
|
|
elem.setAttributeNode(
|
|
|
|
(ret = elem.ownerDocument.createAttribute( name ))
|
|
|
|
);
|
2011-03-26 02:55:11 +00:00
|
|
|
}
|
2012-10-01 23:36:54 +00:00
|
|
|
|
|
|
|
ret.value = value += "";
|
|
|
|
|
2012-12-09 05:26:24 +00:00
|
|
|
// Break association with cloned elements by also using setAttribute (#9646)
|
|
|
|
return name === "value" || value === elem.getAttribute( name ) ?
|
|
|
|
value :
|
|
|
|
undefined;
|
2011-03-26 04:15:25 +00:00
|
|
|
}
|
2011-03-13 20:29:33 +00:00
|
|
|
};
|
2011-04-09 21:25:06 +00:00
|
|
|
|
2012-12-08 21:28:10 +00:00
|
|
|
// Set contenteditable to false on removals(#10429)
|
|
|
|
// Setting to empty string throws an error as an invalid value
|
|
|
|
jQuery.attrHooks.contenteditable = {
|
|
|
|
get: nodeHook.get,
|
|
|
|
set: function( elem, value, name ) {
|
|
|
|
nodeHook.set( elem, value === "" ? false : value, name );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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
|
2012-11-02 00:50:45 +00:00
|
|
|
// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
|
2011-03-07 03:47:40 +00:00
|
|
|
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 );
|
2012-11-27 14:53:30 +00:00
|
|
|
return ret == null ? undefined : ret;
|
2011-03-07 03:47:40 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2012-11-02 00:50:45 +00:00
|
|
|
|
2012-11-19 01:48:49 +00:00
|
|
|
// href/src property should get the full normalized URL (#10299/#12915)
|
|
|
|
jQuery.each([ "href", "src" ], function( i, name ) {
|
|
|
|
jQuery.propHooks[ name ] = {
|
|
|
|
get: function( elem ) {
|
|
|
|
return elem.getAttribute( name, 4 );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
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 ) {
|
2012-09-18 21:39:44 +00:00
|
|
|
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-10-22 20:03:57 +00:00
|
|
|
// IE6/7 call enctype encoding
|
|
|
|
if ( !jQuery.support.enctype ) {
|
|
|
|
jQuery.propFix.enctype = "encoding";
|
|
|
|
}
|
|
|
|
|
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 ) ) {
|
2011-10-27 19:28:14 +00:00
|
|
|
return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 );
|
2011-04-02 21:05:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|