Is it possible to add an additional icon from fontawesome to the right side of a collapsible header in jQuery Mobile, in addition to the default one on the left? For example:
In this scenario, the default icon would be on the left of "Madrid," and on the right side there would be a star icon with a number indicating a rating. Does anyone have a solution for achieving this?
<div class="ui-collapsible-set">
<div data-role="collapsible" data-collapsed-icon="carat-d" data-expanded-icon="carat-u">
<h3>Madrid encantado<i class="fa fa-star-half-o" aria-hidden="true"></i></h3>
</div>
</div>
The issue appears to arise when attempting to insert the additional icon within the h3 element that defines the title and content of the header.