Created
February 21, 2018 18:52
-
-
Save thedapifer/f2dbb06bf0cee6810da64ffd9884346b to your computer and use it in GitHub Desktop.
Bootstrap 4 Tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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