Wednesday, May 25, 2011

jQuery Mobile Page transition without Ajax

Disable all
Add $.mobile.ajaxLinksEnabled = false;
*The order loading javascripts have to be jquery > disable code > jquery mobile .
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6b1.js"></script>
<script type="text/javascript">
$(document).bind("mobileinit", function(){
  $.mobile.ajaxLinksEnabled = false;
});
</script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>

Disable specific link
add rel="external" attribute into a tag.
<a link="#" rel="external">Link Text</a> 

No comments:

Post a Comment