We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to do something when the tab is changed, shouldn't shown.bs.tab be fired?
shown.bs.tab
You can try
$('.nav-tabs').on('shown.bs.tab', function (event) { let tabTarget = $(event.target).attr('href'); console.log($activeTab.val()); }).stickyTabs();
and you'll see the tab name logged only on manual change, not on the initial change by stickyTabs
The text was updated successfully, but these errors were encountered:
I solved by adding .trigger('shown.bs.tab') after $(selector, context).tab('show')
.trigger('shown.bs.tab')
$(selector, context).tab('show')
Sorry, something went wrong.
No branches or pull requests
I need to do something when the tab is changed, shouldn't
shown.bs.tab
be fired?You can try
and you'll see the tab name logged only on manual change, not on the initial change by stickyTabs
The text was updated successfully, but these errors were encountered: