Created
December 3, 2008 18:54
-
-
Save lantins/31642 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 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