Skip to content

Instantly share code, notes, and snippets.

@lantins
Created December 3, 2008 18:54
Show Gist options
  • Save lantins/31642 to your computer and use it in GitHub Desktop.
Save lantins/31642 to your computer and use it in GitHub Desktop.
function toggle_hidden_content(id)
{
if (document.getElementById(id)) {
if (document.getElementById(id+'_show').style.display != 'none') {
document.getElementById(id+'_show').style.display = 'none';
document.getElementById(id).style.display = 'block';
}
else {
document.getElementById(id+'_show').style.display = 'inline';
document.getElementById(id).style.display = 'none';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment