show-notice
hide-notice

Tuesday 6 August 2013

jQuery UI Basic Accordion


Introduction:

Convert a pair of headers and content panels into an accordion.
Accordions support arbitrary markup, but each content panel must always be the next sibling after its associated header. See the header option for information on how to use custom markup structures.
The panels can be activated programmatically by setting the active option.

Example:
<html>
<head>
<link href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" rel="stylesheet"></link>
<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>

<!-- CSS -->
<style type="text/css">
#accordion {
    font-size: 50%;
}
</style>

<!-- Javascript -->
<script>
$(function () {
 $("#accordion").accordion({
  heightStyle: "fill"
 });
});
</script>
</head>
<body>
<!-- HTML -->
<div style="height: 250px;">
<div id="accordion">
<h3>
Tab 1</h3>
<div>
Tab 1 content</div>
<h3>
Tab 2</h3>
<div>
Tab 2 content</div>
<h3>
Tab 3</h3>
<div>
Tab 3 content</div>
</div>
</div>
</body>
</html>

SHARE THIS POST   

0 comments :

Post a Comment

Design by Gohilinfotech | www.gohilinfotech.blogspot.com