Project Overview
The application should be a client-side only (no network communication) HTML, JS application (will be enabled as an app by Phonegap). The main data is in an XML file, which will be also provided as an asset. The XML contains a directory of persons, which have links to other persons.
Current Problem
I am currently struggling with the detail view of a person, especially if I want to navigate to a linked person. I currently do this by using jQuery Mobile Router, so I can do this with #persondetail?id=xyz links. However, if I link from one #persondetail to another #persondetail and use this link. I get a blank page... but this only happens if I use the "slide" transitions, instead of the "fade" transitions. "Fade" transitions seem to be working though, but it seems just wrong, if "slide" transitions are not working...
Solution I look for
I look for a nice example which uses also the kind of linking I explained or a different solution, which proves to be better. It's important to have the linking between one detail view to another detail view (which are using the same jQuery Mobile page templates).
Additional Question
Is there a good way to do a preload of the XML file, so it is already loaded & parsed when I want to access it's data the first time?