Skip to content

Instantly share code, notes, and snippets.

@aramis-it
Created January 20, 2017 06:00
Show Gist options
  • Save aramis-it/ca3e538471ad9229c59d3b5d4361b6d6 to your computer and use it in GitHub Desktop.
Save aramis-it/ca3e538471ad9229c59d3b5d4361b6d6 to your computer and use it in GitHub Desktop.
Jquery confirm before submit
$("form").submit(function (e) {
if (confirm("Bla bla")) {
} else {
e.preventDefault(e);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment