scrimba
Submitting a Form (Part II)
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Submitting a Form (Part II)
AboutCommentsNotes
Submitting a Form (Part II)
Expand for more info
index.js
run
preview
console
// javascript

const myForm = document.getElementById("my-form")

myForm.addEventListener("submit", function() {
console.log("submitted")
})

Console
/index.html?name=123456&email=scrimtastic%40email.com&age=23&theme=squid
-4:23