Skip to content

Instantly share code, notes, and snippets.

@bwll
Last active March 4, 2016 19:45
Show Gist options
  • Save bwll/84083eb12cdba9c24f12 to your computer and use it in GitHub Desktop.
Save bwll/84083eb12cdba9c24f12 to your computer and use it in GitHub Desktop.
// Prevent submission unless checked
$("form").bind('submit',function(event) {
if(!$("input[type=checkbox]").is(":checked")) {
event.preventDefault();
// Do something
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment