I have a collapsible section that I want to add an image, as well as an account 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>
The problem I have is that if I add anything other than a tag <h3>, the section title will not display correctly. This does not work 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 the image and bubble count in the section header?

source
share