Is there a way for two or more ID\'s be required to be checked before doing something.
For instance:
If BOTH Checkbox 1 and Checkbox 2 are checked then th
$('#checkbox1, #checkbox2').change(function() { if ($('#checkbox1').is(':checked') && $('#checkbox2').is(':checked')) { // Do some stuff if both boxes are checked... } });