A Pen by Bre'Ana Deen on CodePen.
Last active
January 14, 2018 15:14
-
-
Save sdoro/dd3bafabd452cf8c189afea9e2d7e27e to your computer and use it in GitHub Desktop.
innerHTML
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
<ul> | |
<li>salt</li> | |
<li>pepper</li> | |
</ul> | |
<p>Today is a <span id="day">bad</span> day</p> |
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
var list = document.getElementsByTagName("ul")[0]; | |
list.innerHTML += "<li>garlic</li>"; | |
var day = document.getElementById("day"); | |
day.innerHTML = "good"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment