You are selecting inputs with name attribute of "bla", but your inputs have "bla[]" name attribute.
$("input[name="bla[]"]").each(function (index, obj) {
// loop all checked items
});
http://jsfiddle.net/26axX/
You are selecting inputs with name attribute of "bla", but your inputs have "bla[]" name attribute.
$("input[name="bla[]"]").each(function (index, obj) {
// loop all checked items
});
http://jsfiddle.net/26axX/