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 - dropdown.js
Please help.
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 - dropdown.js
Please help.
Not sure if its the right way but i did
and its working fine :)
Updated fiddle
You need to make just one change:
Instead of listening to
hide.bs.dropdown
event for only.dropdown.active
apply the event handler to.dropdown
.Basically, change:
$(".dropdown.active").on("hide.bs.dropdown",function(e) {
to:
$(".dropdown").on("hide.bs.dropdown",function(e) {
EDIT: In order to override the default dropdown behavior, you'll need to ignore the
active
state since more than oneli
element can remain expanded and you'll need to toggle visibility yourself.Here's the updated demo
Code: