Created
January 5, 2019 02:24
-
-
Save stephencweiss/5be3a1314b868a197cf575b8f7a77068 to your computer and use it in GitHub Desktop.
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
// 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