

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to use Bootstrap Tab Plugins
By combining a few data attributes, you can easily create a tabbed interface. With this plug-in you can transition through panes of local content in tabs or pills, even via drop down menus.
You can try to run the following code to implement tab plugins −
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <ul id = "myTab" class = "nav nav-tabs"> <li class = "active"> <a href = "#home" data-toggle = "tab"> Home </a> </li> <li><a href = "#quiz" data-toggle = "tab">Quiz</a></li> <li class = "dropdown"> <a href = "#" id = "myTabDrop1" class = "dropdown-toggle" data-toggle = "dropdown"> Tutorials <b class = "caret"></b> </a> <ul class = "dropdown-menu" role = "menu" aria-labelledby = "myTabDrop1"> <li><a href = "#jmeter" tabindex = "-1" data-toggle = "tab">jmeter</a></li> <li><a href = "#ejb" tabindex = "-1" data-toggle = "tab">ejb</a></li> </ul> </li> </ul> <div id = "myTabContent" class = "tab-content"> <div class = "tab-pane fade in active" id = "home"> <p>This is home page.</p> </div> <div class = "tab-pane fade" id = "quiz"> <p>The following are the quizzes:</p> </div> <div class = "tab-pane fade" id = "jmeter"> <p>jMeter is an Open Source testing software. It is 100% pure Java application for load and performance testing.</p> </div> <div class = "tab-pane fade" id = "ejb"> <p>Enterprise Java Beans (EJB) is a development architecture for building highly scalable and robust enterprise level applications to be deployed on J2EE compliant Application Server such as JBOSS, Web Logic etc.</p> </div> </div> </body> </html>
- Related Questions & Answers
- How to use Bootstrap Popover Plugins
- How to use Bootstrap Alert Plugins
- How to use Bootstrap Dropdown Plugins
- How to use Bootstrap Button Plugins
- How to use Bootstrap Collapse Plugins
- How to use Bootstrap Tooltip Plugins
- How to use Bootstrap Scrollspy Plugins
- How to use Bootstrap Carousel Plugins
- How to use Bootstrap Affix Plugins
- What is Bootstrap Plugins
- How to include Bootstrap Plugins on a website
- What are Bootstrap Transition Plugins
- Usage of Bootstrap Modal Plugins
- Fade in tab with Bootstrap
- Bootstrap .tab("show") method
Advertisements