aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes.js
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-07-12 20:19:43 +0000
committerYehuda Katz <wycats@gmail.com>2009-07-12 20:19:43 +0000
commit7d7a960035b7431887581c9cef09eaaef28e3d27 (patch)
treec7d2ea030a8d11f84a369f3716f7dc03d4fc3c70 /src/attributes.js
parente8eff25f3b6d9a0c03f6581089406cebcc86aa34 (diff)
downloadjquery-7d7a960035b7431887581c9cef09eaaef28e3d27.tar.gz
jquery-7d7a960035b7431887581c9cef09eaaef28e3d27.zip
Support for .foo(Function) and testing. TODO: More tests
Diffstat (limited to 'src/attributes.js')
-rw-r--r--src/attributes.js20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/attributes.js b/src/attributes.js
index f7fb0a2c8..9e66df0ce 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -82,19 +82,29 @@ jQuery.fn.extend({
return undefined;
}
+ // Typecast once if the value is a number
if ( typeof value === "number" )
value += '';
+
+ var val = value;
return this.each(function(){
+ if(jQuery.isFunction(value)) {
+ val = value.call(this);
+ // Typecast each time if the value is a Function and the appended
+ // value is therefore different each time.
+ if( typeof val === "number" ) val += '';
+ }
+
if ( this.nodeType != 1 )
return;
- if ( jQuery.isArray(value) && /radio|checkbox/.test( this.type ) )
- this.checked = (jQuery.inArray(this.value, value) >= 0 ||
- jQuery.inArray(this.name, value) >= 0);
+ if ( jQuery.isArray(val) && /radio|checkbox/.test( this.type ) )
+ this.checked = (jQuery.inArray(this.value, val) >= 0 ||
+ jQuery.inArray(this.name, val) >= 0);
else if ( jQuery.nodeName( this, "select" ) ) {
- var values = jQuery.makeArray(value);
+ var values = jQuery.makeArray(val);
jQuery( "option", this ).each(function(){
this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
@@ -105,7 +115,7 @@ jQuery.fn.extend({
this.selectedIndex = -1;
} else
- this.value = value;
+ this.value = val;
});
}
});