I fail to understand why href
is not working on a
tag for data-toggle="dropdown"
. When I hit the Lists
tab, i should be routed to the google
website.
Simple HTML:
<div class="btn-group">
<a href="http://google.com" class="btn btn-default dropdown-toggle" data-toggle="dropdown">Lists</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="#">Sub List 1</a>
</li>
<li>
<a href="#">Sub List 2</a>
</li>
</ul>
</div>