Skip to content

Instantly share code, notes, and snippets.

@thedapifer
Created February 21, 2018 18:52
Show Gist options
  • Select an option

  • Save thedapifer/f2dbb06bf0cee6810da64ffd9884346b to your computer and use it in GitHub Desktop.

Select an option

Save thedapifer/f2dbb06bf0cee6810da64ffd9884346b to your computer and use it in GitHub Desktop.
Bootstrap 4 Tabs
// work around to fix navtabs issue https://github.com/twbs/bootstrap/issues/23667
$('a[data-toggle="tab"]').click(function(){
// todo remove snippet on bootstrap v4
$('a[data-toggle="tab"]').click(function() {
$($(this).attr('href')).show().addClass('show active').siblings().hide();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment