Created
November 25, 2012 16:44
-
-
Save zastrow/4144280 to your computer and use it in GitHub Desktop.
Simple JavaScript class toggle.
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
function toggleClass() { | |
document.getElementById('itemId').classList.toggle('itemClass'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment