A Pen by Bre'Ana Deen on CodePen.
In this example, the paragraph text is changed when the paragraph element is clicked.
<p id="myParagraph">Good Morning!</p> |
A Pen by Bre'Ana Deen on CodePen.
In this example, the paragraph text is changed when the paragraph element is clicked.
var paragraph = document.getElementById("myParagraph"); | |
paragraph.onclick = changeGreeting; | |
function changeGreeting(){ | |
paragraph.innerHTML = "Good Night!"; | |
} |