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>create images show new pages</h3>     </div>          <div id="about" class="tab-pane fade">         <h3>6214</h3>         </div>              <div id="contact" class="tab-pane fade">              <h3>exds</h3>                </div>        </div> 

you missing javascripts.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> 

refer : https://codepen.io/jrcanicula/pen/vmojrg


Comments

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - .htaccess mod_rewrite for dynamic url which has domain names -

Website Login Issue developed in magento -