Note: Donot mark it as duplicate because I want only solution that uses no additional JS and/or css !!
I am using Bootstrap 3 and I know from here that the .dropdown-submenu
has been removed in Bootstrap 3 RC
I checked this too ... I want similar menu like this but Without any additional JS !! Is there any want to get :hover
effect in my menu without adding any JS like above link ?? I just want to use pure Bootstrap 3 classes.
I tried, but it is not working as expected !!
<ul id="menu" class="nav navbar-nav navbar-right margin-bottom-half-em">
<li class="aboutus dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true">About Us <span class="caret"></span></a>
<ul class="dropdown-menu bg-dark-gray">
<li><a href="#" class="overview">Overview</a></li>
<li><a href="#" class="ourTeam">Our Team</a></li>
<li><a href="#" class="ourMission">Our Missions</a></li>
</ul>
</li>....