html - bootstrap3 nav-tabs not switching tabs -
this code i'm working with. i want able switch tabs not. i've tried taking off active class still doesn't work. i followed tutorial way didn't require javascript. can me find out why not working? <div class="nav"> <ul class="nav nav-tabs"> <li class="active"><a data-toggle="tab" href="#home">home</a></li> <li><a data-toggle="tab" href="#tournaments">tournaments</a></li> <li><a data-toggle="tab" href="#about">about</a></li> <li><a data-toggle="tab" href="#contact">contact</a></li> </ul> </div> <div class="tab-content"> <div id="home" class="tab-pane fade"> <h3> example </h3> </div> <div id="tournaments" class="tab-pane fade"> <h3...