Skip to content

Instantly share code, notes, and snippets.

@jaredjburgess
Created March 25, 2016 17:33
Show Gist options
  • Save jaredjburgess/4d878669dae2845f43d3 to your computer and use it in GitHub Desktop.
Save jaredjburgess/4d878669dae2845f43d3 to your computer and use it in GitHub Desktop.
JQuery prevent form submit.
$('.ui.form').submit(function(e) {
e.preventDefault();
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment