Last active
July 20, 2016 05:32
-
-
Save mariyadiminsky/89438d6a2571236e40646abd90cbdc13 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// The 'click' event which listens for a click. | |
document.getElementById('btn').addEventListener("click", turnThirdDivBlue); | |
// the function called as a callback above. | |
function turnThirdDivBlue() { | |
document.getElementById("thirdDiv").style.background = 'blue'; | |
document.getElementById('btn').innerHTML = "Turned blue on click!" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment