Skip to content

Instantly share code, notes, and snippets.

@eknowlton
Created November 22, 2016 21:24
Show Gist options
  • Save eknowlton/191db9e0b02112b992fec0d63e178f3c to your computer and use it in GitHub Desktop.
Save eknowlton/191db9e0b02112b992fec0d63e178f3c to your computer and use it in GitHub Desktop.
$(function(){
$("#myform").on('submit', function(e){
var isValid = true;
if($('#input').val().length == 0){
isValid = false;
}
if(!isValid){
e.preventDefault();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment