I have an accordian on a page
<a class="accordion-toggle collapsed show-hide" data-toggle="collapse" data-parent="#accordion" href="#collapse2">Select Options</a>
<div id="collapse2" class="collapse">
When the page loads the accordian is collapsed. User will click which then expands it and they select an option from a dropdown list (which makes a postback). After postback the accoridan is collapsed but i would like it to remain open.
So i added ...
Go to the complete details ...