Current "pseudo class" on link to tab

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.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.