I am working on a web app right now that uses Jquery and has multiple pages on a single html document. This is done through a series of data-role="page"s wrapped in <div> tags.
Right now, that is only 5 of these 'pages' but I plan to have ~900 (1 for every item that can be reviewed). My question is, does Jquery load all the 'pages' in the html file at once onload?
I'm thinking if it does, it isnt feasible for me to go about this web-app this way, as I'll have 900 pages loaded with 900 calls to a database to populate each with reviews as soon as the html file is loaded.
I thought I might ask before I go too far into the project. Thanks all!
UPDATE
I will know where the user will click next. I did some research and think I found a piece of code I believe does it. pastebin.com/JpGW5PqN its line 15-20. Will this work to load the div with id 180336 on line 50? I don't know how to check if it is loaded dynamically or not!