I want to add dynamically generated list items to an unordered list in my jQuery mobile page.
But when I add new list items, the existing CSS isnt applied. sortedList is my ul.
Ive tried a few different things including:
jQuery('#sortedList').append('<li><h3>SUCCESS</h3></li>')
jQuery('#sortedList li').html('<h3>SUCCESS</h3>')
jQuery('#sortedList li').append('<h3>SUCCESS</h3>')
jQuery('#sortedList li').trigger('create');
jQuery('#sortedList li').append('<h3>SUCCESS</h3>')
Nothing works, any suggestions or advice would be greatly appreciated