0
How to configure the plugin accordion of jquery-ui so that when I click on some item it does not close the others, for example when I click it opens the clicked and closes the others but I want when I click on some that is open remains open, how do I do it?
Code to date:
<script>
$(function () {
$("#accordion").accordion();
});
</script>
<div id="accordion">
<h3>Section 1</h3>
<div>
texto 2
</div>
<h3>Section 2</h3>
<div>
texto 1
</div>
</div>
What’s wrong with the question? please who gave the downvote tell me how I can improve the question :)
– Silvio Andorinha