Set tab to fill Space in JavaScript
Description
The following code shows how to set tab to fill Space.
Example
<!--from ww w .ja v a2 s. co m-->
<html lang="en">
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script type="text/javascript">
$(function() {
//configure accordion
var accOpts = {
event:"mouseover",
active:"#header3",
alwaysOpen:false,
fillSpace: true,
autoHeight:false
};
//turn specified element into an accordion
$("#myAccordion").accordion(accOpts);
});
</script>
</head>
<body>
<div id="myAccordion">
<h3><a href="#">Section 1</a></h3>
<div>
<p>P1</p>
</div>
<h3><a href="#">Section 2</a></h3>
<div>
<p>P2</p>
</div>
<h3><a id="header3" href="#">Section 3</a></h3>
<div>
<p>P3</p>
<ul>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
</ul>
</div>
<h3><a href="#">Section 4</a></h3>
<div>
<p>P4</p>
</div>
</body>
</html>
The code above generates the following result.
Javascript Tutorial Tab
Add a tab to tab panel in JavaScript
Alert the id of the tab that was selected i...
Build jQuery UI Tabs - Collapse content in ...
Build jQuery UI Tabs - Default functionalit...
Build jQuery UI Tabs - Open on mouseover in...
Build jQuery UI Tabs - Simple manipulation ...
Build jQuery UI Tabs - Sortable in JavaScri...
Build jQuery UI Tabs - Tabs at bottom in Ja...
Build jQuery UI Tabs - Vertical Tabs functi...
Destroy a tab panel in JavaScript
Enable and disable tab by click a button in...
Handle Tab selected event in JavaScript
Remove a tab from tab panel in JavaScript
Rotate tabs in JavaScript
Set second tab selected and disable the fir...
Set tab to be not always Open and not auto ...
Add a tab to tab panel in JavaScript
Alert the id of the tab that was selected i...
Build jQuery UI Tabs - Collapse content in ...
Build jQuery UI Tabs - Default functionalit...
Build jQuery UI Tabs - Open on mouseover in...
Build jQuery UI Tabs - Simple manipulation ...
Build jQuery UI Tabs - Sortable in JavaScri...
Build jQuery UI Tabs - Tabs at bottom in Ja...
Build jQuery UI Tabs - Vertical Tabs functi...
Destroy a tab panel in JavaScript
Enable and disable tab by click a button in...
Handle Tab selected event in JavaScript
Remove a tab from tab panel in JavaScript
Rotate tabs in JavaScript
Set second tab selected and disable the fir...
Set tab to be not always Open and not auto ...