Created
May 19, 2016 14:17
-
-
Save krikunts/9f9c9270640f22256f9df8653292f95d to your computer and use it in GitHub Desktop.
form submit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(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