I\'m trying to pass some parameters to a page-id made in jQuery Mobile.
The site is composed of list-views with links, each of them has the hash coded in it, like th
It looks like one way to achieve passing URL parameters between pages is to use the hash processing approach in this example from the jQuery Mobile docs: http://demos.jquerymobile.com/1.4.1/navigation-hash-processing/
This solution seems ideal because, unlike other solutions, it updates the URL in the browser address bar to include the URL parameters upon changing between pages. This approach also eliminates the need for using any plugins such as 'jqm.page.params'.