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 are selecting inputs with name attribute of "bla", but your inputs have "bla[]" name attribute.
"bla"
"bla[]"
$("input[name='bla[]']").each(function (index, obj) { // loop all checked items });
http://jsfiddle.net/26axX/