Made sure that the .val() logic for setting radios and checkboxes was correct. Fixes...
[jquery.git] / src / attributes.js
index 91a0fe1..eecf90f 100644 (file)
@@ -158,7 +158,7 @@ jQuery.fn.extend({
                        }
 
                        if ( jQuery.isArray(val) && /radio|checkbox/.test( this.type ) ) {
-                               this.checked = jQuery.inArray(this.value || this.name, val) >= 0;
+                               this.checked = jQuery.inArray( this.value, val ) >= 0;
 
                        } else if ( jQuery.nodeName( this, "select" ) ) {
                                var values = jQuery.makeArray(val);