Skip to content

Commit

Permalink
Make the value hook less obtrusive for elements which do not inherent…
Browse files Browse the repository at this point in the history
…ly have a value property. Fixes #9328.
  • Loading branch information
timmywil committed May 18, 2011
1 parent 7d3ba9f commit ba90af0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/attributes.js
Expand Up @@ -498,7 +498,9 @@ jQuery.attrHooks.value = {
if ( formHook && jQuery.nodeName( elem, "button" ) ) {
return formHook.get( elem, name );
}
return elem.value;
return name in elem ?
elem.value :
elem.getAttribute( name );
},
set: function( elem, value, name ) {
if ( formHook && jQuery.nodeName( elem, "button" ) ) {
Expand Down
3 changes: 2 additions & 1 deletion test/unit/attributes.js
Expand Up @@ -40,7 +40,7 @@ test("jQuery.attrFix/jQuery.propFix integrity test", function() {
});

test("attr(String)", function() {
expect(42);
expect(43);

equals( jQuery("#text1").attr("type"), "text", "Check for type attribute" );
equals( jQuery("#radio1").attr("type"), "radio", "Check for type attribute" );
Expand All @@ -54,6 +54,7 @@ test("attr(String)", function() {
equals( jQuery("#text1").attr("name"), "action", "Check for name attribute" );
ok( jQuery("#form").attr("action").indexOf("formaction") >= 0, "Check for action attribute" );
equals( jQuery("#text1").attr("value", "t").attr("value"), "t", "Check setting the value attribute" );
equals( jQuery("<div value='t'></div>").attr("value"), "t", "Check setting custom attr named 'value' on a div" );
equals( jQuery("#form").attr("blah", "blah").attr("blah"), "blah", "Set non-existant attribute on a form" );
equals( jQuery("#foo").attr("height"), undefined, "Non existent height attribute should return undefined" );

Expand Down

0 comments on commit ba90af0

Please sign in to comment.