photo Dropdown on hover

Dropdown menu on hover easy with css


 

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown > .dropdown-toggle:active {
    pointer-events: none;
}

That's it simple as that

Go back