Skip to content

Instantly share code, notes, and snippets.

@stephencweiss
Last active January 5, 2019 02:27
Show Gist options
  • Save stephencweiss/5dc10e3b989176993ef46405f1625824 to your computer and use it in GitHub Desktop.
Save stephencweiss/5dc10e3b989176993ef46405f1625824 to your computer and use it in GitHub Desktop.
eventHandler with event.preventDefault() added
function submitForm (event) {
event.preventDefault(); // <-- This is the money line
console.log(`Form submitted!`);
const name = document.querySelector('[name]').value;
console.log(`The name is --> `, name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment