I found this script provided by Danro for allowing links to tabs.
$(‘.custom-button’).on(‘click’, function (evt) {
$(‘.target-tab-link’).triggerHandler(‘click’);
evt.preventDefault();
});
The script works well. My problem is that if the link button is part of the Navbar the CURRENT pseudo class does not work. Any suggestions.