Mouse pointer on hover of Twitter Bootstrap dropdown nav
We're missing your CSS, but I would go for a simple cursor: pointer
:
.dropdown-menu li:hover {
cursor: pointer;
}
An alternative to cursor:pointer
is adding an inert href
attribute for the <a>
, e.g. href="#"
(although some object to this).