This is the code I was executing:
var data = ["Localstorage item 1", "Localstorage item 2", "Localstorage item 3"];
var listComponent = Appery("mobileList");
$.each(data, function(index, value) {
listComponent.append(
$('a rel="nofollow"' + value + '/a')
);
});
listComponent.listView("refresh");