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
I had the same issue, and opted to just trigger a click event on the proper tab, and let Bootstrap do what is needed.
$('#link').on('click', function(){ $('.nav-tabs a[href="#profile"]').click(); });