Description data-role="collapsible" in a <div> container.
data-collapsed="false".
Eg:
[html]
<div data-role="collapsible" data-collapsed="false">
<h1>Home</h1>
<p>Welcome to SPLesson's jQuery Mobile(Home)</p>
</div>
[/html]
Description
Description data-role="collapsibleset" around the collapsible blocks.
Eg:
[html]
<div data-role="collapsibleset">
<div data-role="collapsible">
<h1>Home</h1>
<p>Welcome to SPLesson's jQuery Mobile(Home)</p>
</div>
<div data-role="collapsible">
<h1>Info</h1>
<p>Welcome to SPLesson's jQuery Mobile(Info)</p>
</div>
</div>
[/html]
Example
Key Points