I am learning jQuery Mobile and making a test site using Jquery mobile and ColdFusion. What I am trying to do is pass variables in the URL. I had no problem doing this in the alpha versions, but now it is no longer working and I am curious to find out what the new method of doing this is. To be more specific I have a multi page site in a single .cfm file. From the page id="home-page" I am trying to pass and ID variable in the URL to the id="year-page". Once I pass than, then my ColdFusion does some server queries and displays date based on that, but this is not important. The way I had the links in the early alpha builds was
<li> <a href="?ID=73#year-page">My ID</a> </li>
In the Alpha builds this would take me to
#?id=73#about-page
And it worked perfectly because I could use the URL variable to run the server side queries.
Now, when I try to do the same with the latest few builds, I get taken to
#year-page
It removes all my URL variables. How can I solve this?