In this tutorial, we will learn How To Create Simple Tabs Using Jquery UI


Now, let's see the post of create tabs jquery ui. you will learn how to create simple tabs using jquery ui. If you want to see example of jquery ui using make tabs. You will learn jquery UI tabs example. 

Follow bellow tutorial step of example of jquery ui tabs.


Example:

<!doctype html> 
<html lang="en"> 
   <head> 
        <meta charset="utf-8"> 
        <title>How To Create Simple Tabs Using Jquery Ui - rathorji.in</title> 
        <link href="https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet"> 
        <script src="https://code.jquery.com/jquery-1.10.2.js"></script> 
        <script src="https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> 
        <script> 
            $(function() {  
                $( "#tabs-1" ).tabs();  
            });  
        </script> 
   </head> 
   <body> 
        <div id="tabs-1"> 
            <ul> 
                <li><a href="#tabs-2">Basic Setting</a></li> 
                <li><a href="#tabs-3">SMS Setting</a></li> 
                <li><a href="#tabs-4">Mail Setting</a></li> 
            </ul> 
            <div id="tabs-2"> 
                <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
                tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
                quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
                consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
                cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
                proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> 
            </div> 
            <div id="tabs-3"> 
                <p>This is SMS Setting</p> 
            </div> 
            <div id="tabs-4"> 
                <p>This is Mail Setting</p> 
            </div> 
        </div> 
   </body> 
</html> 


May this example help you.