I am trying to build a web app with JQTouch. I actually have it all working nicely if I hard code all the content in. However, the site needs to be entirely dynamic.
Before a user logs in, there is to be only one page visible - a login page. Once logged in, the app downloads content that that particular user is allowed to see. For example, user 1 may be able to see a home page with 3 links on, each link pointing to a page containing 3 more links. user 2 may only see 2 links on the home page, but the first pointing to a page that contains two more links, and the second pointing to a page that contains 5 more links. The number of pages is dynamic, and different for every user. Because of this, I cannot create div's to load content into.
How can I set up this in JQTouch. I want each page to load on demand. I don't need the code to achieve this, just the theory behind it. For example, do I create a "template" div, and clone it each time a new page is to be loaded, or do I run a script to work out how many divs I will need, and then create them all?
Any advice would be greatly welcome.
Thanks