Skip to content

Instantly share code, notes, and snippets.

@mrsweaters
Created May 7, 2014 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrsweaters/b937b25b7f339321d31c to your computer and use it in GitHub Desktop.
Save mrsweaters/b937b25b7f339321d31c to your computer and use it in GitHub Desktop.
At least one checkbox checked.
$(document).on('valid', '[data-abide]', function () {
var vehicles = $('input:checked', this);
if (vehicles.length > 0) {
// post your form via ajax
} else {
// show custom error message.
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment