Web Development Guide
<ul id="menüü">
<li id="meist">
<p><a href="meist.html">Meist</a></p>
</li> </ul>
<div id="submenu">
<ul id="submeist">
<li class="asi1">
Asi 1
</li>
<li class="asi2">
Asi 2
</li>
<li class="asi3">
Asi 3
</li>
</ul>
</div>
CSS Styling
#meist {
display: inline;
float:left;
width:180px;
height:50px;
color:#191919;
text-align:center;
overflow:hidden;
background:#990000;
-moz-border-radius-top-left: 50px;
border-top-left-radius: 50px;
}
#submeist
{
font-size:12px;
display:none;
}
#submeist .asi1
{
margin-left:70px;
}
#submeist .asi2
{
margin-left:25px;
}
#submeist .asi3
{
margin-left:25px;
}
JavaScript Functionality
$("#meist").mouseout(function () {
$("#submeist").hide();
return false;
});
$("#meist").mouseenter(function () {
$("#submeist").show();
return false;
});
I am looking to implement a feature that displays "submeist" when hovering over "meist". I have a basic understanding of jQuery but encountering issues with the current code. Any help or suggestions with explanatory comments would be greatly appreciated :)