I\'m trying to add list items to unordered lists in jquery mobile, but the formatting doesn\'t seem to be created properly.
The answers provided turned out to be a little bit messy...
$('ul').append('hello'); is ok, but it needs to refresh the listview, so all you need is:
$('ul').append('hello');
$('ul').append('hello').listview('refresh');