Skip to content

Instantly share code, notes, and snippets.

@chrismcintosh
Created January 28, 2019 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismcintosh/84bb89ebbcd672463f10886cae52e9ea to your computer and use it in GitHub Desktop.
Save chrismcintosh/84bb89ebbcd672463f10886cae52e9ea to your computer and use it in GitHub Desktop.
function toggle(id) {
var e = document.getElementById(id);
if( e.style.display == 'block' || getComputedStyle(e, null).display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment