Skip to content

Instantly share code, notes, and snippets.

@stephencweiss
Created January 5, 2019 02:24
Show Gist options
  • Save stephencweiss/5be3a1314b868a197cf575b8f7a77068 to your computer and use it in GitHub Desktop.
Save stephencweiss/5be3a1314b868a197cf575b8f7a77068 to your computer and use it in GitHub Desktop.
// Create a variable that selects the form
let formClass = document.querySelector('.form-class')
// Define what happens on form submission
function submitForm(event) {
console.log(`Form submitted!`);
// The name the user types into the form.
const name = document.querySelector('[name]').value;
console.log(`The name is --> `, name);
}
// Add the event listner to the form
formClass.addEventListener('submit', submitForm);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment