Show Web Links on Mouse Hover in CRM Portal
Views (391)
Hello Folks,
CRM Portals show child links only when you click on weblinks down arrow.Arpit Blog
Here is the code through which you can show the child links on mouse hover of Parent Web Link.
Note: Use the above code in Header Web Template.
Cheers
CRM Portals show child links only when you click on weblinks down arrow.Arpit Blog
Here is the code through which you can show the child links on mouse hover of Parent Web Link.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$('.dropdown-toggle').mouseover(function(){
$(this).next().css("display", "block");
});
$('.page_section').mouseover(function(){
$('.dropdown-toggle').next().css("display", "none");
});
</script>
Note: Use the above code in Header Web Template.
Cheers
This was originally posted here.

Like
Report
*This post is locked for comments