web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :

Show Web Links on Mouse Hover in CRM Portal

Arpit Shrivastava Profile Picture Arpit Shrivastava 7,518 User Group Leader
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.

<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.

Comments

*This post is locked for comments