Quantcast
Channel: Discussions - T3 - Joomla Template Framework
Viewing all articles
Browse latest Browse all 3483

Bootstrap Events not firing on dropdown

$
0
0
Hi there -

I'm trying to capture the show.bs.dropdown and hide.bs.dropdown events from the default dropdown menus in T3, but they don't seem to be firing. Is anyone else having an issues with this? Here is the code I'm using to test:


$.noConflict();
jQuery(document).ready(function($) {

$('li.dropdown').on('show.bs.dropdown', function(){
alert("SHOW");
});

$('.dropdown').on('hide.bs.dropdown', function(e){
alert("CLOSE");
});
});

Viewing all articles
Browse latest Browse all 3483

Trending Articles