-
-
Save HodardHazwinayo/a506aa6c482dca38af9ef0b416e467f6 to your computer and use it in GitHub Desktop.
JavaScript Show Hide Scripts Samples
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
<script type="text/javascript"> | |
<!-- | |
function toggle_visibility(id) { | |
var e = document.getElementById(id); | |
if(e.style.display == 'block') | |
e.style.display = 'none'; | |
else | |
e.style.display = 'block'; | |
} | |
function showID(id) { | |
var e = document.getElementById(id); | |
e.style.display = 'block'; | |
} | |
function hideID(id) { | |
var e = document.getElementById(id); | |
e.style.display = 'none'; | |
} | |
//--> | |
</script> | |
<a href="#" onclick="toggle_visibility('foo');">Click here to toggle visibility of element #foo</a> | |
<div id="foo">This is foo</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment