Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created November 25, 2012 16:44
Show Gist options
  • Save zastrow/4144280 to your computer and use it in GitHub Desktop.
Save zastrow/4144280 to your computer and use it in GitHub Desktop.
Simple JavaScript class toggle.
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