I am working on a basic page with jquery-mobile.
I currently have 2 pages of data. HOME = ListView of names DETAILS = Details of the name
When I first open the page (home), it loads good, and shows a few names. I click on the FIRST name, (ie: John), and it shows the details for John. When I click BACK, and click on a NEW NAME, (ie: JANE), it doesn't show anything.
But if I click back to JOHN, it will show his information. I'm not sure what is causing this to NOT load the second time around, perhaps caching? Any thoughts would be helpful.
HOME PAGE
Home
<div data-role="content">
<ul id="homeList" data-role="listview"></ul>
</div>
</div>
DETAILS PAGE
<div id="detailsPage" data-role="page" >
<div data-role="header" data-position="fixed"><h1>Details</h1></div>
<div data-role="content">
<ul id="details" data-role="listview"></ul>
</div>
</div>
</body>
This is my Javascript for the DETAILS Page
/* JQUERY
-------------------------------------------------------------------- */
$("#detailsPage").live('pageshow', function(event){
var serviceToLoad = "details.php";
var pageId = "#detailsPage";
var contentId = "#details";
// getId from global.js function
var id = getUrlVars()["id"];
// Apply the content to the page
getDetails(contentId, id);
});
/* FUNCTION SET
-------------------------------------------------------------------- */
function getDetails(contentId, id) {
// Load the JSON
$.getJSON(serviceUrl + 'details.php?id='+id, function(data) {
// Remove all content first
$(contentId + ' li').remove();
// We only need to grab the 1 result
var details = data.items[0];
$(contentId).append('<li><a href="#">' + details.name + '</a></li>\n');
// Refresh page
$(contentId).listview('refresh', true);
});
}
Any direction would be greatly appreciated, the jQuery-Mobile is very new to me, but looks interesting!
UPDATE: This is my current working 'location'. http://apps.stickystudios.ca/www/