elvista
elvista

Reputation: 605

Bootstrap 3 dropdown events not firing

I am trying to get an shown event fired at dropdown at this site running on BS3.0

http://hmelius.com/avant/index.php

I have tried this code in the console (from the BS3 documentation page) but with no luck

$('.dropdown-toggle').on('shown.bs.dropdown', function () {
  console.log("shown");
});

Upvotes: 15

Views: 12516

Answers (2)

Justin Leveck
Justin Leveck

Reputation: 2358

Based on @monastic-panic 's comment this works

$(".dropdown-toggle").parent().on('show.bs.dropdown', function () {
  console.log("shown");
});

Upvotes: 10

monastic-panic
monastic-panic

Reputation: 3997

I believe the events fire on the "parent" not the toggle, so it would be the element above the toggle with .dropdown or .btn-group; the dropdown wrapping element

take a look at the source to see what I mean: https://github.com/twbs/bootstrap/blob/master/js/dropdown.js

Upvotes: 41

Related Questions