Search code examples
javascriptandroidjqueryjquery-mobilebackbone.js

white screen always show before transition while using JQuery mobile changePage


I am making single page app with Backbone, JQuery mobile, when I use JQuery changePage to switch views(pages), white screen always showes before transition(testing on Android), have tried out solutions found on StackOverflow, but still problem existing. So is there better solution to solve it?


Solution

  • Problem solved:

    Solution:

    Change:
    
    <meta name="viewport" content="width=device-width, initial-scale=1">
    
    To:
    
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
    

    Then white screen disappear.