I just want to change the position of collapsible col2
before collapsiblecol1
. Finally the order should be: 1.col2
2.col1
3.col3
<div data-role="content">
<div id="List" data-role="collapsible-set">
<div data-role="collapsible" data-content-theme="c" id="col1">
<h3>Header 1</h3>
<p>Text 1</p>
</div>
<div data-role="collapsible" data-content-theme="c" id="col2">
<h3>Header 2</h3>
<p>Text 2</p>
</div>
<div data-role="collapsible" data-content-theme="c" id="col3">
<h3>Header 3</h3>
<p>Text 3</p>
</div>
</div>
</div>