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:
<script type="text/javascript">
$.noConflict();
jQuery(document).ready(function($) {
$('li.dropdown').on('show.bs.dropdown', function(){
alert("SHOW");
});
$('.dropdown').on('hide.bs.dropdown', function(e){
alert("CLOSE");
});
});
</script>