How To Create Simple Tabs Using Jquery UI?

11-Apr-2023

.

Admin

How To Create Simple Tabs Using Jquery UI?

Hi Guys

Now, let's see 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 then you are a right place. you will learn jquery ui tabs example. Follow bellow tutorial step of example of jquery ui tabs.

In this example, I will create how to create simple tabs using jquery ui.We will show example of tabs using jquery ui.you can easy to make tabs using jquery ui.I will exaplain tabs using jquery and jquery ui. we can single content area with multiple panels, each associated with a header in a list.

Here the example of simple tabs using jquery ui.

Example


Now this simple tabs using jquery ui and design code:

<!doctype html>

<html lang="en">

<head>

<meta charset="utf-8">

<title>How To Create Simple Tabs Using Jquery Ui - nicesnippets.com</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>

I will help you...

#Jqury UI