SyntaxFix
Write A Post
Hire A Developer
Questions
If you like to get a list of all values of checked checkboxes (e.g. to send them as a list in one AJAX call to the server), you could get that list with:
var list = $("input[name='bla[]']:checked").map(function () { return this.value; }).get();