Skip to content

Instantly share code, notes, and snippets.

@stephencweiss
Created January 5, 2019 02:26
Show Gist options
  • Save stephencweiss/4db3782962549372ce5b1e8b44087e74 to your computer and use it in GitHub Desktop.
Save stephencweiss/4db3782962549372ce5b1e8b44087e74 to your computer and use it in GitHub Desktop.
eventHanlder with HTMLFormElement.reset() added
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(); // <-- Our *new* money line
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment