Skip to content
Permalink
Browse files
jquery core: small size optimizations for val().
  • Loading branch information
flesler committed Aug 10, 2008
1 parent db63af1 commit fc38ead
Showing 1 changed file with 6 additions and 7 deletions.
@@ -357,11 +357,10 @@ jQuery.fn = jQuery.prototype = {
},

val: function( value ) {
if ( value == undefined ) {

if ( this.length ) {
var elem = this[0];
if ( value == undefined ) {
var elem = this[0];

if ( elem ) {
if( jQuery.nodeName( elem, 'option' ) )
return (elem.attributes.value || {}).specified ? elem.value : elem.text;

@@ -393,11 +392,11 @@ jQuery.fn = jQuery.prototype = {
}
}

return values;
return values;
}

// Everything else, we just grab the value
} else
return (this[0].value || "").replace(/\r/g, "");
return (elem.value || "").replace(/\r/g, "");

}

0 comments on commit fc38ead

Please sign in to comment.