Skip to content

Instantly share code, notes, and snippets.

@ChrisMoney
Created February 15, 2012 15:16
Show Gist options
  • Select an option

  • Save ChrisMoney/6f1b2faff831338cc152 to your computer and use it in GitHub Desktop.

Select an option

Save ChrisMoney/6f1b2faff831338cc152 to your computer and use it in GitHub Desktop.
Javascript - Show/Hide Menu
<script langauge = "text/javascript">
// Show Hide Menu
function hide(editMenu)
{
var element = document.getElementById(editMenu);
element.style.visbility = "hidden";
}
function show(editMenu)
{
var element = document.getElementById(editMenu);
element.style.visbility = "visible";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment