Created
January 5, 2019 01:47
-
-
Save stephencweiss/cec9b0bed0357297d53fd667f7b477a3 to your computer and use it in GitHub Desktop.
A simple HTML form which is prevented from refreshing, but is cleared post submission.
This file contains 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
<div> | |
<form class="form-class"> | |
<input type="text" name="customer" autocomplete="off" placeholder="Your Name" required> | |
<input type="submit"> | |
</form> | |
</div> | |
<script> | |
console.log(`The path is --> `, window.location.pathname); | |
let formClass = document.querySelector('.form-class'); | |
function submitForm (event) { | |
event.preventDefault(); | |
console.log(`Form submitted!`); | |
const name = document.querySelector('[name]').value; | |
console.log(`The name is --> `, name); | |
// Do anything else you want here | |
formClass.reset(); | |
} | |
formClass.addEventListener('submit', submitForm); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment