Skip to content

Instantly share code, notes, and snippets.

@rvw
Created May 15, 2013 13:58
Show Gist options
  • Save rvw/5584181 to your computer and use it in GitHub Desktop.
Save rvw/5584181 to your computer and use it in GitHub Desktop.
simple show/hide menu (without the need for a js framework)
/* for showing the collection of feeds menu*/
var az=500;var bz=0;var cz=0;function o(ez){fz();if(cz)cz.style.visibility='hidden';cz=document.getElementById(ez);cz.style.visibility='visible';cz.onmouseout=gz;cz.onmouseover=fz;}
function hz(){if(cz)cz.style.visibility='hidden';}
function gz(){bz=window.setTimeout(hz,az);}
function fz(){if(bz){window.clearTimeout(bz);bz=null;}
}
document.onclick=hz;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment