I have seen a few of these posts similar to this, so i'm sorry in advance if this is a duplicate.
I have this code when pulling in some data, but I can't seem to figure out why my list isn't being refreshed... Any possible solutions? This is my JS.
/* VARIABLES
-------------------------------------------------------------------- */
var serviceUrl = "http://localhost/app/services/";
var serviceToLoad = "homeList.php";
var home;
var pageId = "#homePage";
var contentId = "#homeList";
/* JQUERY
-------------------------------------------------------------------- */
$(pageId).live('pageshow', function(event){
getHomeList();
});
/* FUNCTION SET
-------------------------------------------------------------------- */
function getHomeList() {
$.getJSON(serviceUrl + serviceToLoad, function(data) {
// Remove all content first
$(contentId +' li').remove();
// Load Data
$.each(data.items, function(index, list){
$(contentId).append('<li><a href="#">' + list.name + '</a></li>\n');
});
});
// Reload View
$(contentId).listview('refresh');
}
And this is my HTML page
<div id="homePage" data-role="page" >
<div data-role="header" data-position="fixed"><h1>Home</h1></div>
<div data-role="content">
<ul id="homeList" data-role="listview"></ul>
</div>
</div>
Any help would be greatly appreciated!