Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Last active July 20, 2016 05:32
Show Gist options
  • Save mariyadiminsky/89438d6a2571236e40646abd90cbdc13 to your computer and use it in GitHub Desktop.
Save mariyadiminsky/89438d6a2571236e40646abd90cbdc13 to your computer and use it in GitHub Desktop.
// 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