existe alguna menera de ordenarlo mediante js , jquery
Código Javascript
:
Ver originalvar arrayOpt = new Array;
$('input[type=checkbox]').each(function() {
if ($(this).attr('name') == 'opcion[]') {
if ($(this).attr('checked') == 'checked') {
arrayOpt.push($(this).val());
} else{
arrayOpt.push($(this).val()==0);
}
}
});
$("input[name^=txtList]").each(function() {
arrayOpt.push($(this).val());
});
con el codigo obtengo esto false,false,false,input1,input2,input3
y necesito false ,input1,false, input 2 , false, input 3
el problema es que son muchos datos.