I have a collapsible section that I want to add an image and a count bubble too like the markup below..
<a href="pa.aspx">
<img src="images/gf.png" alt="" class="ui-li-icon">
IT Change Controls<span class="ui-li-count">4</span>
</a>
I problem is if I add anything but an <h3> tag the section header wont render properly. This is not working for me..
<div data-role="collapsible" data-inset="false" data-collapsed="false">
<%--<h3>Section 1</h3>--%>
<a href="pa.aspx">
<img src="images/gf.png" alt="" class="ui-li-icon">
IT Change Controls<span class="ui-li-count">4</span>
</a>
How can I get an image and a count bubble in the section header?

Maybe the following implementation is close to what you want: