An accordion is created in jQuery Mobile by grouping a series of individual collapsibles into set.
Collapsible sets start with the same markup as individual collapsibles which have a heading followed by the collapsible content. By adding a parent wrapper with a data-role="collapsible-set"
attribute to the collapsibles they will be visually grouped and they will behave like an accordion so only one section can be open at a time.
I'm the collapsible content for section 1
I'm the collapsible content for section 2
I'm the collapsible content for section 3
For full width collapsibles without corner styling add the data-inset="false"
attribute to the set. This makes the collapsible set look more like an expandable listview.
For a more compact version that is useful in tight spaces, add the data-mini="true"
attribute to the set.
This is good for tight spaces.
Here's some collapsible content.
Final bit of collapsible content.
The default icons of collapsible headings can be overridden by using the data-collapsed-icon
and data-expanded-icon
attributes, either at the collapsible-set
level or on any of its collapsibles individually.
Specify the open and close icons on the set to apply it to all the collapsibles within.
This collapsible also gets the icon from the set.
The icons here are applied to this collapsible specifically, thus overriding the set icons.
The default icon positioning of collapsible headings can be overridden by using the data-iconpos
attribute, either at the collapsible-set
level or on any of its collapsibles individually.
Inherits icon positioning from data-iconpos="right"
attribute on set.
Set via data-iconpos="left"
attribute on the collapsible
Set via data-iconpos="bottom"
attribute on the collapsible
Set via data-iconpos="top"
attribute on the collapsible
Add the data-corners="false"
attribute to get an inset collapsible set without rounded corners.
Collapsible content
Collapsible content
Collapsible content
Add a data-theme
attribute to the set to set the color of each collapsible header in a set. Add the data-content-theme
attribute to specify the color of the collapsible content.
Content theme A
Content theme A
To have individual sections in a group styled differently, add data-theme
and data-content-theme
attributes to specific collapsibles.
Collapsible content, swatch "b"
Collapsible content, swatch "a"
Collapsible content, swatch "d"