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

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -