I\'m using the Flexy template (using bootstrap) and I can\'t get the shown.bs.tab event on tab to work.
I\'ve managed to make it work on JSFiddle.
Here is the co
In my case, there was a conflict between Jquery and Bootstrap.
I solved the problem with jQuery.noConflict(). See below!
I hope that helps!
// Issue @ tabs toggle jQuery.noConflict(); $(document).on('shown.bs.tab', 'a[data-toggle="tab"]', function (e) { alert(e.target.href); });