moginn gracias por responder, tengo una pregunta como hago para imprimir el resultado del servidor?
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')){
//alert('id:'+id+'value:'+value);
checkboxValues.push($(this).val());
}
});
$.ajax({
type: "GET",
url: "getEstaciones",
data: {info: checkboxValues },
success: function (result) {
var estaciones = result;
alert(estaciones);
}
});
});