I have a Bootstrap \"tab\" navigation with 3 different content tabs. It works perfectly except that I want to link to one of the tabs from OUTSIDE the tab navigation. Meanin
You can do a small trick to achieve this:
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) { var target = this.href.split('#'); $('.nav a').filter('[href="#'+target[1]+'"]').tab('show'); })
http://jsfiddle.net/s6bP9/