Well I have a simple question for those who knows jQuery. First of all, I have this HTML code:
<div id="Layer-69" class="nav-bar nav-links" >
<a href="#" title="NOSOTROS" class="nosotros">NOSOTROS</a>
</div>
<div id="nosotros-menu">
<ul>
<li><a href="#" title="Quienes Somos?">Quienes Somos?</a></li>
<li><a href="#" title="Reseña Historica">Reseña Historica</a></li>
<li><a href="#" title="Nuestra Filosofia">Nuestra Filosofia</a></li>
</ul>
</div>
And this jQuery code:
$(document).on('ready', function(){
$('.nosotros').on('mouseover', function(){
$('#nosotros-menu').slideDown('fast');
});
});
What I have right now is that when I put the mouse over the "nosotros" a element, it shows the "nosotros-menu" div element. Now, what I want to do is that when the pointer leaves the "nosotros-menu" div, this div just hide, but I can't do it, I don't know how. please help me, thank's.