I have such select list in html:
123
$(function() {
var serial = $('input[name=drive_style]').serialize();
//php -> $('input[name=drive_style[]]').serialize();
alert( serial );
});
this give you:
drive_style=1&drive_style=3&drive_style=5
but for work with php you also need to have input name like this:
123
NOTE: drive_style[]
that obviously giv you:
drive_style[]=1&drive_style[]=3&drive_style[]=5