javascript - Bootstrap Dropdown with Hover -


ok, need straightforward.

i have set navbar dropdown menus in (using class="dropdown-toggle" data-toggle="dropdown"), , works fine.

the thing works "onclick", while prefer if worked "onhover".

is there built-in way this?

the easiest solution in css. add like...

.dropdown:hover .dropdown-menu {     display: block;     margin-top: 0; // remove gap doesn't close  } 

working fiddle


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -