I have several input checkboxes, (they name is same for send array on server).
So, I need get each value this checkboxes and I want use as selector checkbox names, this
You should include the brackets as well . . .
therefore referencing it should be as be name='bla[]'
name='bla[]'
$(document).ready( function () { $("input[name='bla[]']").each( function () { alert( $(this).val() ); }); });