I'm currently developing a Phonegap app and I am trying to steer clear of jqm in my project. I find that the css is causing some issues with the html code. As a workaround, I can transition between pages using:
window.location = "profiles.html";
However, this method results in a abrupt change in user experience. I am looking for a smoother way to handle page transitions. Are there any ways to improve the changepage process, perhaps through the use of css or other techniques?