Skip to content

Instantly share code, notes, and snippets.

@masasdani
Created November 14, 2011 04:09
Show Gist options
  • Save masasdani/1363207 to your computer and use it in GitHub Desktop.
Save masasdani/1363207 to your computer and use it in GitHub Desktop.
Event to manipulate Visibility Element HTML
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