I have a form, in which is about 10 checkboxes. When I want to send form after check some checkox, I do that this way:
$('input#checkbox1').live("click", function() {
$('#my_form').submit();
});
How to do, that if I check whatever checkbox, so the form will be sent?
$('input[type=checkbox]')instead of$('input#checkbox1')should help.