I've got a little HTML/CSS/JQuery drop down menu working. My pseudo code for it is:
<style>
#mainMenu ul li .subMenu{
display:none;
position:absolute;
}
#mainMenu ul li:hover .subMenu{
display:block;
}
</style>
<script language="javascript">
function closeMenus (){
$('.subMenu').css('display','none');
}
</script>
<div id="mainMenu">
<ul>
<li>
Menu Header
<div class="subMenu" onClick="closeMenus();">Menu Content</div>
</li>
</ul>
</div>
The CSS works so when someone hovers over Menu Header, the subMenu appears below it and disappears when the mouse leaves the menu. My problem comes when a user clicks an item in the menu; I'd like to hide the menu. The JavaScript hides the menu fine but when the user mouses over the menu header again, it doesn't reappear. It appears that CSS won't override the JavaScript display property. Most, if not all, of the links won't be going to other pages, just calling more JavaScript.
Anyone have any ideas how to hide the sub menu on click so that it will be again visible, or do I need more Javascript to show the menu every time someone hovers?

</ul>. Of course this doesn't work. :hover is active onmouseover only and not toggled. You need to change the css on the event. – Smamatti Oct 11 '11 at 18:17