Fix for bug #1600 - multiple selects were being serialized incorrectly.

This commit is contained in:
John Resig 2007-09-15 00:23:21 +00:00
parent 82eccdfcd0
commit 6d71a10ed2
2 changed files with 5 additions and 5 deletions

View file

@ -78,7 +78,7 @@ jQuery.fn.extend({
var val = jQuery(this).val();
return val == null ? null :
val.constructor == Array ?
jQuery.map( val, function(i, val){
jQuery.map( val, function(val, i){
return {name: elem.name, value: val};
}) :
{name: elem.name, value: val};