How To Remove Blink Between Page Switch? (jquery Mobile)
Solution 1:
First of all, you use a mix of different technologies. So as it stands - your problem is unmanageable. Start debugging by making it manageable.
<form onsubmit="makeRedirectForTesting(); return false;">
<inputtype="submit"value="Sign In"></form>functionmakeRedirectForTesting() {
$( ":mobile-pagecontainer" ).pagecontainer( "change", "#page4" );
}
If you still see flicker - remove all your business logic scripts with exeption of the one I gave in this answer. Make testing.
If you still see flicker - kill your PhoneGap. Make testing.
If you still see flicker - remove all content from other pages - but put in them text 'this is page #' - and add a page-name. Make testing.
If you still see flicker - provide here a listing of your resulting HTML. This will be a starting point for reproducing your bug.
Report results of your testing. If flickering stops - tell which step caused it.
I think this debugging session wouldn't give fast results but it would be a methodical movement towards localizing bug.
Post a Comment for "How To Remove Blink Between Page Switch? (jquery Mobile)"