Skip to content

Instantly share code, notes, and snippets.

@stephencweiss
Created January 5, 2019 01:47
Show Gist options
  • Save stephencweiss/cec9b0bed0357297d53fd667f7b477a3 to your computer and use it in GitHub Desktop.
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.
<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