chriscloyd Posted August 14, 2009 Share Posted August 14, 2009 I coded a dropdown menu when i hover over a image now the problem im having is for the drop down menu to stay visible while i try to click on one of the links javascript code <script> function hoverover(id) { // close old layer if(menu) ddmenuitem.style.visibility = 'hidden'; // get new layer and show it menu = document.getElementById(id); menu.style.visibility = 'visible'; } // close showed layer function hoveroff() { if(menu) menu.style.visibility = 'hidden'; } </script> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.