I have two pages in Jquery mobile(page1.html,page2.html,page1.js,page2.js). A form with dynamic list available in page1. I want to submit this form, then this form data pass to page2 and display in page2.
So how to pass the “page1” form data to “page2” using jquery mobile. Also page1 form contains dynamic list, so how to get dynamic list parameters in page2.
I have two pages in Jquery mobile(page1.html,page2.html,page1.js,page2.js). A form with dynamic list available in
Share
I believe
$.mobile.loadPagewill help you.Although you have to use PHP.
And then in page2.php you should see the data
If you can’t use PHP then I believe you could use same script above, but use Js to extract GET parameters. Which I do not prefer.