2012-07-10 01:38:11 +00:00
|
|
|
var nodeHook, boolHook, fixSpecified,
|
2012-07-23 02:23:32 +00:00
|
|
|
rclass = /[\t\r\n]/g,
|
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,
|
2012-07-23 02:23:32 +00:00
|
|
|
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,
|
2012-07-10 01:38:11 +00:00
|
|
|
getSetAttribute = jQuery.support.getSetAttribute;
|
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 ) {
|
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" ) {
|
2012-06-16 01:01:44 +00:00
|
|
|
classNames = value.split( core_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++ ) {
|
2012-09-18 21:39:44 +00:00
|
|
|
if ( setClass.indexOf( " " + classNames[ c ] + " " ) < 0 ) {
|
2011-06-19 22:58:47 +00:00
|
|
|
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 ) {
|
2012-06-23 23:38:27 +00:00
|
|
|
var removes, className, elem, c, cl, i, l;
|
2011-06-08 00:54:11 +00:00
|
|
|
|
|
|
|
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
|
|
|
});
|
|
|
|
}
|
2012-08-28 13:26:06 +00:00
|
|
|
if ( (value && typeof value === "string") || !arguments.length ) {
|
2012-06-23 23:38:27 +00:00
|
|
|
removes = ( value || "" ).split( core_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 ) {
|
2009-12-18 16:27:56 +00:00
|
|
|
|
2012-06-23 23:38:27 +00:00
|
|
|
className = (" " + elem.className + " ").replace( rclass, " " );
|
|
|
|
|
|
|
|
// loop over each item in the removal list
|
|
|
|
for ( c = 0, cl = removes.length; c < cl; c++ ) {
|
|
|
|
// Remove until there is nothing to remove,
|
2012-09-18 21:39:44 +00:00
|
|
|
while ( className.indexOf(" " + removes[ c ] + " ") >= 0 ) {
|
2012-06-23 23:38:27 +00:00
|
|
|
className = className.replace( " " + removes[ c ] + " " , " " );
|
|
|
|
}
|
2009-09-08 01:07:50 +00:00
|
|
|
}
|
2012-06-23 23:38:27 +00:00
|
|
|
elem.className = value ? jQuery.trim( className ) : "";
|
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-06-16 01:01:44 +00:00
|
|
|
classNames = value.split( core_rspace );
|
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-10-24 14:31:22 +00:00
|
|
|
attr: function( elem, name, value, pass ) {
|
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
|
|
|
|
2012-07-05 21:21:58 +00:00
|
|
|
if ( pass && jQuery.isFunction( jQuery.fn[ name ] ) ) {
|
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
|
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 );
|
2011-11-14 17:31:28 +00:00
|
|
|
return;
|
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 {
|
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
|
|
|
|
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 ) {
|
2012-07-12 02:46:34 +00:00
|
|
|
var propName, attrNames, name, isBool,
|
2011-09-20 01:07:07 +00:00
|
|
|
i = 0;
|
|
|
|
|
2011-11-14 17:24:58 +00:00
|
|
|
if ( value && elem.nodeType === 1 ) {
|
2012-04-02 22:37:02 +00:00
|
|
|
|
2012-06-16 01:01:44 +00:00
|
|
|
attrNames = value.split( core_rspace );
|
2011-08-25 19:33:38 +00:00
|
|
|
|
2012-07-12 02:46:34 +00:00
|
|
|
for ( ; i < attrNames.length; i++ ) {
|
2011-11-13 08:10:21 +00:00
|
|
|
name = attrNames[ i ];
|
2011-05-04 15:29:38 +00:00
|
|
|
|
2011-11-14 17:24:58 +00:00
|
|
|
if ( name ) {
|
|
|
|
propName = jQuery.propFix[ name ] || name;
|
2012-03-05 17:54:44 +00:00
|
|
|
isBool = rboolean.test( name );
|
2011-09-20 01:07:07 +00:00
|
|
|
|
2011-11-14 17:24:58 +00:00
|
|
|
// See #9699 for explanation of this approach (setting first, then removal)
|
2012-03-05 17:54:44 +00:00
|
|
|
// Do not do this for boolean attributes (see #10870)
|
|
|
|
if ( !isBool ) {
|
|
|
|
jQuery.attr( elem, name, "" );
|
|
|
|
}
|
2011-11-14 17:24:58 +00:00
|
|
|
elem.removeAttribute( getSetAttribute ? name : propName );
|
|
|
|
|
|
|
|
// Set corresponding property to false for boolean attributes
|
2012-03-05 17:54:44 +00:00
|
|
|
if ( isBool && propName in elem ) {
|
2011-11-14 17:24:58 +00:00
|
|
|
elem[ propName ] = false;
|
|
|
|
}
|
2011-09-20 01:07:07 +00:00
|
|
|
}
|
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-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 ) {
|
|
|
|
// 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
|
2011-10-17 20:45:27 +00:00
|
|
|
if ( !getSetAttribute ) {
|
2011-09-12 23:40:14 +00:00
|
|
|
|
|
|
|
fixSpecified = {
|
|
|
|
name: true,
|
2012-02-25 20:05:15 +00:00
|
|
|
id: true,
|
|
|
|
coords: true
|
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 ) {
|
2011-05-01 21:09:50 +00:00
|
|
|
var ret;
|
|
|
|
ret = elem.getAttributeNode( name );
|
2012-07-03 01:35:00 +00:00
|
|
|
return ret && ( fixSpecified[ name ] ? ret.value !== "" : ret.specified ) ?
|
|
|
|
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-10-15 18:20:36 +00:00
|
|
|
ret = elem.ownerDocument.createAttribute( name );
|
2011-08-04 20:34:59 +00:00
|
|
|
elem.setAttributeNode( ret );
|
2011-03-26 02:55:11 +00:00
|
|
|
}
|
2012-07-03 01:35:00 +00:00
|
|
|
return ( ret.value = 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-10-06 21:17:51 +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 ) {
|
|
|
|
if ( value === "" ) {
|
|
|
|
value = "false";
|
|
|
|
}
|
|
|
|
nodeHook.set( elem, value, name );
|
|
|
|
}
|
|
|
|
};
|
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 );
|
|
|
|
return ret === null ? undefined : ret;
|
2011-03-07 03:47:40 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2012-11-02 00:50:45 +00:00
|
|
|
|
|
|
|
// link's href property should get the full normalized URL (#10299)
|
|
|
|
jQuery.propHooks.href = {
|
|
|
|
get: function( elem, name ) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|