Skip to content

Instantly share code, notes, and snippets.

@evilnapsis
Created June 17, 2017 04:17
Show Gist options
  • Select an option

  • Save evilnapsis/e34c91a25e4096561438560b3b69e16f to your computer and use it in GitHub Desktop.

Select an option

Save evilnapsis/e34c91a25e4096561438560b3b69e16f to your computer and use it in GitHub Desktop.
Control de Formulario 1
<!-- 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