I have a problem with inner-accordions : the destroy-recreate method to refresh an accordion after adding some panels doesn't work correctly.
When I click on the button in the second accordion it adds a section into it. But the sub-accordion doesn't work (in spite of the desctruction-recreation of the accordion). You can see the code and test it here : http://jsfiddle.net/YL99D/2/
BUT if I modify the HTML code by adding an initial section in the #sections div, it works perfectly when I click the button (Code and demo here : http://jsfiddle.net/YL99D/3/ )
I have also looked at the generated HTML codes using Firebug and I have found something interesting. First look at the code generated when I have put a hard-coded section in the #sections div :
<div id="sections" class="ui-accordion ui-widget ui-helper-reset ui-accordion-icons" role="tablist">
<div id="sections_new1">
<h3 class="ui-accordion-header ui-helper-reset ui-state-active ui-corner-top" role="tab" aria-expanded="true" aria-selected="true" tabindex="0">
<span class="ui-icon ui-icon-triangle-1-s"></span>
<a href="#" tabindex="-1">Section</a>
</h3>
<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active" role="tabpanel" style="display: block;">
Section content :
<br>
<div class="sub-accordions ui-accordion ui-widget ui-helper-reset ui-accordion-icons" role="tablist">
<div>
<h3 class="ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-hover" role="tab" aria-expanded="false" aria-selected="false" tabindex="0">
<span class="ui-icon ui-icon-triangle-1-e"></span>
<a href="#" tabindex="-1">Sub accordion.</a>
</h3>
<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom" role="tabpanel" style="display: none;">Sub accordion content</div>
</div>
</div>
</div>
</div>
</div>
Now look at the code generated when I let the #sections div empty :
<div id="sections" class="ui-accordion ui-widget ui-helper-reset ui-accordion-icons" role="tablist">
<div id="sections_new1">
<h3 class="ui-accordion-header ui-helper-reset ui-state-active ui-corner-top" role="tab" aria-expanded="true" aria-selected="true" tabindex="0">
<span class="ui-icon ui-icon-triangle-1-s"></span>
<a href="#" tabindex="-1">Section</a>
</h3>
<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active" role="tabpanel" style="display: block;">
Section content :
<br>
<div class="sub-accordions ui-accordion ui-widget ui-helper-reset ui-accordion-icons" role="tablist">
<div class="ui-accordion-header ui-helper-reset ui-state-default ui-state-active ui-corner-top ui-state-hover" role="tab" aria-expanded="true" aria-selected="true" tabindex="0">
<span class="ui-icon ui-icon-triangle-1-s"></span>
<h3>
<a href="#" tabindex="-1">Sub accordion.</a>
</h3>
<div>Sub accordion content</div>
</div>
</div>
</div>
</div>
</div>
The result is that classes are badly set. Do someone have an idea of what is causing this problem ?
[EDIT] : Complete rephrasing