Fixed the issue where getting an empty value was impossible. Fixes #5697.
[jquery.git] / src / attributes.js
index 787c6bb..91a0fe1 100644 (file)
@@ -164,7 +164,7 @@ jQuery.fn.extend({
                                var values = jQuery.makeArray(val);
 
                                jQuery( "option", this ).each(function() {
-                                       this.selected = jQuery.inArray( this.value || this.text, values ) >= 0;
+                                       this.selected = jQuery.inArray( this.value, values ) >= 0;
                                });
 
                                if ( !values.length ) {