Skip to content Skip to sidebar Skip to footer

Bootstrap Tabs Not Switching

Copy

you are missing a closing " on your class it should be

   <ul class="nav nav-tabs"id="tabs">

see if that fixes it

Solution 2:

I think the problem is with the jQuery verison 1.6, bootstrap used .on() which was added only in jQuery verision 1.7. So upgrade jQuery to a newer version and it should be fine

With jQuery 1.6.4: Demo - not working because of error

Uncaught TypeError: Object [objectObject] has no method 'on'

Demo: jQuery 1.7, jQuery 1.9

Post a Comment for "Bootstrap Tabs Not Switching"