Created
June 17, 2017 04:17
-
-
Save evilnapsis/e34c91a25e4096561438560b3b69e16f to your computer and use it in GitHub Desktop.
Control de Formulario 1
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
| <!-- Powered By http://evilnapsis.com/ --> | |
| <form id="myform" method="post" action="process.php"> | |
| <input type="submit" value="Proceder"> | |
| </form> | |
| <script type="text/javascript"> | |
| var form = document.getElementById("myform"); | |
| form.onsubmit = function(e){ | |
| alert("Hola!!"); | |
| e.preventDefault(); | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment