jQuery To Simple tabs
In this JQuery tutorial we will develop a program to make simple tabs
Steps to develop the simple tabs .
Step 1:
Create a new file (simpleTab.html) and add the following code into it:
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Style-Type" content="text/css"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <title>Tabs</title> <script src="script/jquery-1.1.3.1.pack.js" type="text/javascript"></script> <script src="script/jquery.history_remote.pack.js" type="text/javascript"></script> <script src="script/jquery.tabs.pack.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { $('#div-1').tabs(); }); </script> <link rel="stylesheet" href="style/tab.css" type="text/css" media="print, projection, screen"> </head> <body> <h2>Simple Tabs</h2> <div id="div-1"> <ul> <li><a href="#T-1"><span>One</span></a></li> <li><a href="#T-2"><span>Two</span></a></li> <li><a href="#T-3"><span>Three</span></a></li> </ul> <div id="T-1"> <p>First tab</p> </div> <div id="T-2"> Second Tab </div> <div id="T-3"> Third Tab </div> </div> </body> </html> |
Program explanation:
The following code includes the jQuery JavaScript library file:
<script src="script/jquery-1.1.3.1.pack.js"
type="text/javascript"></script>
<script src="script/jquery.history_remote.pack.js"
type="text/javascript"></script>
<script src="script/jquery.tabs.pack.js" type="text/javascript"></script>
The Style Css library file
<link rel="stylesheet" href="style/tab.css" type="text/css" media="print, projection, screen">:
The Code
$('#div-1').tabs()
This tabs() function works when click on the Tab corresponding id "div-1" is working.
"div-1" having fragments id "T-1","T-2","T-3" is working.
Output:

Check online demo of the application
Learn from experts! Attend jQuery Training classes.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: jQuery To Simple tabs View All Comments
Post your Comment