I have a custom asp.net control which contains some checkBoxes. I know how to get the checkBox, that was clicked
$('#customer-category-control input:checkbox').click(function(event)
{
var el = $(this).attr('name');
};
Suggest me, please, how to get only all checked checkBoxes by click and make a JSON object from their names.
1 Answer