scrimba
Build a sign-up form
Important details
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

Important details
AboutCommentsNotes
Important details
Expand for more info
index.js
run
preview
console
// javascript

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

console.log("page loaded")

myForm.addEventListener("submit", function(event) {
event.preventDefault()
console.log("submitted")
myForm.innerHTML = `<span class="thanks">Thank you ${name.value} for your Collectibox order!`
})

Console
"page loaded"
,
/index.html?
-2:31