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 ) {
}
test("val()", function() {
- expect(9);
+ expect(11);
document.getElementById('text1').value = "bla";
equals( jQuery("#text1").val(), "bla", "Check for modified value of input element" );
equals( jQuery('#option3e').val(), 'no value', 'Call val() on a option element with no value attribute' );
+ equals( jQuery('#option3a').val(), '', 'Call val() on a option element with no value attribute' );
+
+ jQuery('#select3').val("");
+ same( jQuery('#select3').val(), [''], 'Call val() on a multiple="multiple" select' );
+
});
var testVal = function(valueObj) {