So I have a listview in which each component wired to an on click function which looks like this:
function launchNewPage() { $.mobile.changePage( \"newPa
You cannot start the jQuery mobile with $(document).ready() you should started like this:
$(document).ready()
try to work with this in the first HTML
$("div[data-role*='page']").live('pageshow', function(event, ui) { document.location.href="newPage.html"; });