Created
August 21, 2018 10:19
-
-
Save paullacey78/463268663eddacd9625d26d1f027d4ce to your computer and use it in GitHub Desktop.
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
function classToggle() { | |
this.classList.toggle('class1'); | |
this.classList.toggle('class2'); | |
} | |
document.querySelector('#div').addEventListener('click', classToggle); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment