Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Created June 20, 2013 14:16
Show Gist options
  • Save tcelestino/5823094 to your computer and use it in GitHub Desktop.
Save tcelestino/5823094 to your computer and use it in GitHub Desktop.
Show menu item with id element
function showlayer(layer){
var myLayer=document.getElementById(layer);
if(myLayer.style.display=="none" || myLayer.style.display==""){
myLayer.style.display="block";
} else {
myLayer.style.display="none";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment