-
-
Save johnnny-bravoo/661813d8e1fc0307f10b65de97ef8a42 to your computer and use it in GitHub Desktop.
BS4 - Tabs
This file contains 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
jQuery(".tab-pane").addClass("active").addClass("show"); | |
jQuery(".nav-tabs .nav-link").on("click", function() { | |
console.log(this.hash); | |
jQuery(".tab-pane").not(this.hash).removeClass("active").removeClass("show"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment