Cita:
Iniciado por Montes28
Código PHP:
Ver original@foreach($tipos as $tipo)
<input type="checkbox" name="estaciones[]" value="{{ $tipo->id }}" id="{{ $tipo->id }}">{{ $tipo->nombre }} <br>
@endforeach
Código PHP:
$(function(){
$('input[type="checkbox"]').change(function(){
var checkboxValues = new Array();
$(':checkbox:checked').each(function() {
var id=$(this).attr('id');
var value=$(this).val();
if ($(this).prop('checked')){
checkboxValues.push($(this).val());
}
});
$.ajax({
type: "POST",
url: "index.php",
data: {info: checkboxValues },
success: function (result) {
//do somthing here
}
});
});