I was able to wrap the accordion content in div and was also able to push the active tab on the top. But I want external previous, next and close accordion button. I have tried serveral options but nothing is work. Can anyone tell me how to go about it.
This is my FIDDLE
<div id="accordion">
<div class="wrap">
<h3><a href="#">Header 1</a></h3>
<div>Collapsible content 1</div>
</div>
<!-- end wrap -->
<div class="wrap">
<h3><a href="#">Header 2</a></h3>
<div>Collapsible content 2</div>
</div>
<!-- end wrap -->
<div class="wrap">
<h3><a href="#">Header 3</a></h3>
<div>Collapsible content 3</div>
</div>
<!-- end wrap -->
<button class='previous'>Previous</button>
<button class='next'>Next</button>
$(window).load(function () {
$(function () {
$("#accordion").accordion({
header: '> div.wrap >h3'
});
});
});
$(".wrap").click(function () {
//$(this).prependTo("#ImportantNumbers");
$(this).hide().prependTo("#accordion").slideDown();
});
http://jsfiddle.net/wq3pu8t9/1/