I need help achieving the same navigation as below link.
It has my code along with clients requirement. And I\'m using Bootstrap 3
Bootstrap Dropdowns -
Not sure if its the right way but i did
$(function(){
$('.nav').find('li.dropdown.active').addClass('open');
$(".dropdown").on("hide.bs.dropdown",function(e) {
e.preventDefault();
return false;
});
$('.navbar-main li').on('click', function (){
var me = $(this);
$('.navbar-main li').removeClass('open');
$(this).addClass('open');
});
});
and its working fine :)