I am using jquery accordion animation:
$('.accordion').click(function() {
$(this).next().toggle("fold", 1000);
return false;
}).next().hide();
along with a button for expanding the div below:
<button class="accordion" onclick="my_method()">EXPAND</button>
<div class="panel">
...contents to expand here
</div>
This works great. But I only want to allow the accordion to open once (unless page refreshed obviously), although the onclick event should call the method every time the button is clicked.