scrimba
Your first interactive website
Changing the text of elements
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

Changing the text of elements
AboutCommentsNotes
Changing the text of elements
Expand for more info
index.js
run
preview
console
var myButton = document.getElementById("btn")

myButton.addEventListener("click", function(){
// code to be run when the button is clicked
})
Console
/index.html
-2:33