Skip to content

Instantly share code, notes, and snippets.

@krikunts
Created May 19, 2016 14:17
Show Gist options
  • Select an option

  • Save krikunts/9f9c9270640f22256f9df8653292f95d to your computer and use it in GitHub Desktop.

Select an option

Save krikunts/9f9c9270640f22256f9df8653292f95d to your computer and use it in GitHub Desktop.
form submit
$(document).ready(function () {
$("#myform").submit(function (event) {
event.preventDefault();
alert("success");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment