Created
November 14, 2011 04:09
-
-
Save masasdani/1363207 to your computer and use it in GitHub Desktop.
Event to manipulate Visibility Element HTML
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 tutup(id){ | |
document.getElementById(id).style.visibility='hidden'; | |
} | |
function buka(id){ | |
document.getElementById(id).style.visibility='visible'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment