So I\'ve just started learning jQuery Mobile, and I\'ve learned how it loads all links via ajax without actually loading the next page. Several of my pages use forms and GET
Commonly, there 2 method for transfer parameter between jQuery Mobile page.
This is the method use ajax address to transfer parameter. How to pass and get Parameters between two Pages in Jquery Mobile?
Using sessionStorage/localStorage to transfer parameter, you can add this code at first page,
Before go to next page, parameter id is storaged into sessionStorage.
In next page, you can use this method to take parameter content,
$('#page_Parameter1').live('pageshow', function(event, ui) {
alert('Parameter ID: ' + sessionStorage.ParameterID);
});