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); } }); });