<div data-role="collapsible" data-content-theme="e" id="collapsePlace">
<h3>Place:</h3>
<!--things...-->
</div>
How can I dynamically change the text of the <h3>
header ('Place:') in the collapsible div?
I tried:
$('#collapsePlace').children('h3').text('new text');
And it changes the text - but loses all of the styling!
The actual HTML structure of a collapsible in jQuery Mobile 1.0RC2 is the following (after the framework has made its pass on the HTML):
The nested
<span>
element within the<span class="ui-btn-text">
element makes this a little tricky. If you want to preserve the structure of the<span class="ui-btn-text">
element you will need to save the nested<span>
element, overwrite it, and then replace it:Here is a jsfiddle of the above solution: http://jsfiddle.net/jasper/4DAfn/2/