i am developing a my first jquery-mobile app, and im pretty new to both web development and java-script in general.
I have the following html in my content section:
<div data-role="collapsible" data-collapsed="false" data-content-theme="c">
<h3>Results</h3>
<p id="UnitResult"> Results.. </p>
</div>
<div data-role="collapsible" data-collapsed="true" data-content-theme="c" >
<h3 id ="ShowAllh3">Show all</h3>
<ul id="AllUnitsResult" data-role="listview" data-inset="true" data-theme="d">
<li>list element</li>
<li>list element 2</li> </ul>
</div>
I also have a <input type="number" .... onchange="calculate()> and in the calculate function i do the following (amongst other):
$('#UnitResult').html(volume + " " + fromText + " equals " + result + " " + toText + ".");
$('#ShowAllh3').text('test');
for(var i = 0; i < resultArray.length; i++) {
$('#AllUnitsResult').append('<li class = "number">' + Units[i].name + ': ' + resultArray[i] + '</li>');
}
The problem i have is that the styling of these elements change when i add new html tags in realtime, is there any way to avoid this?
Before function is called:

After function is called:

You can see that the new elements that are added to the list looks strange, and the heading that was "Show all", is changed to "test", but the formating is gone..
e = document.createElement(tagName);, modify its properties and then append it to #AllUnitsResult like you did before. – Viruzzo Nov 23 '11 at 15:20$("#AllUnitsResult").listview("refresh");does the trick :) – randoms Nov 23 '11 at 15:25