Skip to content

Instantly share code, notes, and snippets.

@cdl
Created October 9, 2013 17:49
Show Gist options
  • Save cdl/6905299 to your computer and use it in GitHub Desktop.
Save cdl/6905299 to your computer and use it in GitHub Desktop.
$("form#newsletter").submit(function() {
// some custom validation
// function 1
});
$("form#newsletter").shush();
// (inside of .shush())
$(this).submit(function() {
// logic to disable form submit
// function 2
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment