I have menu list like
<ul class="systeMenus">
<li>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</li>
<li></li>
</ul>
The first ul
tag is opening from some other onmouseover
event of the link in another frameset frame.
The 2 ul
opens by CSS display:block;position:absolute; left:175px;
to parent li
just like one menu appears inside parent li
tag and hides at onmouseout
event on the same tag li
.
How can I hide these both the ULs when mouseenter
on body. As I tried $('body').mouseenter
and parent $('ul.systeMenus').mouseleave
. Since I am getting problem on both of the implementation.
Any help is appreciated.Kindly provide the solution.