hola amigos tengo un formulario con una matriz de checkbox y necesito enviar por ajax un array ese envio lo debo de hacer cuando se marque o desmarque algun checkbox
este es mi codigo
Código Javascript
:
Ver original$(function(){
$('input[type="checkbox"]').change(function(){
var checkboxValues = new Array();
$('input[name="estaciones[]"]:checked').each(function() {
var id=$(this).attr('id');
var value=$(this).val();
if ($(this).prop('checked')){
checkboxValues.push($(this).val());
}
});
$.ajax({
type: "GET",
url: "getEstaciones",
data: {info: checkboxValues },
success: function (result) {
var estaciones = result;
alert(estaciones);
}
});
});