I use the default navigation bar, and a few list items are drop-down menus. I canโt click on the link that brings up the dropdown. I know that I could just add a duplicate link to the drop-down list, but I would prefer. Is it possible to make a link to a link a clickable link (and not just a handle for a drop-down list)?
For reference, see the first link in the drop-down list below. I want users to be able to click on it and actually go to the page that it points to.
<nav class="navbar navbar-fixed-top admin-menu" role="navigation"> <div class="navbar-header">...</div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> I DONT WORK! <b class="caret"></b> </a> <ul class="dropdown-menu"> <li><a href="/page2">Page2</a></li> </ul> </li> <li><a href="#">I DO WORK</a></li> </ul> </div> </nav>
javascript css twitter-bootstrap-3
emersonthis Nov 12 '13 at 17:08 2013-11-12 17:08
source share