Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dejanmarkovic/1e73e94564236f2f9e68 to your computer and use it in GitHub Desktop.
Save dejanmarkovic/1e73e94564236f2f9e68 to your computer and use it in GitHub Desktop.
Forms with buttons instead of input submit
//register click on the button
$("#submit").click(function () {
//when button is clicked submit the form
$("#registration").submit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment