Menu PopUp
Menu PopUp
Hi,
I am new to JQuery,
i had a requirement to develop a menu and on mouse over on menu items i need to get popup (its not drop down please).I am able to get popup ,it is getting disappear before control is transferred .
can any one help me on this.
My code:
<li class="green" id="notification_li">
<a href="#" id="Link">Notifications</a>
<div id="Container">
<div id="Body" class="Body">
<af:panelGroupLayout id="pgl1">
<af:inputText label="Label 1" id="it2"/>
</af:panelGroupLayout>
</div>
</div>
</li>
$(document).ready(function () {
$("#Link").hover(function () {
$("#Container").fadeToggle(200);
return false;
});
$(document).hover(function () {
$("#Container").hide();
});
$("#Container").hover(function () {
return false;
});
});
Thanks in advance
Kumar