Hola amigos ya tengo un array con los cheboxs seleccionados el ajax se activa cada vez que se selecciona un checbox y mi idea es enviar un array con todo los valores de los checbox,
estoy bien o estoy mal?
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 Javascript
:
Ver original$(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());
}
});
//alert(checkboxValues);
});
moginn gracias por responder dime en que parte va el ajax?