The same problem here (I tried to fix it for more than 3 hours, no luck, I tried a lot of things that I found on the Internet, but no luck).
If you delete the entire footer and add a button in the content area, the transition suddenly works like a charm. Thus, one way would be to fake the navigator through the buttons from the content area that you place at the bottom of the page ... Not very nice though.
<div data-role="content"> <h1> Page Nav and Dialog Example </h1> <a data-role="button" href="index2.html">Page Navigation</a></div>
I use this with custom-scripting.js:
$(document).bind("mobileinit", function(){ $.mobile.defaultPageTransition = 'none'; $.mobile.defaultDialogTransition = 'none'; $.mobile.useFastClick = true;});
Link to it through:
<script type="text/javascript" src="jquery-1.8.3.js"></script> <script src="custom-scripting.js"></script> <script type="text/javascript" src="jquery.mobile-1.2.0.js"></script>
Maybe someone else found a solution for using navbar without flickering?
source share