Turn off the page transition animation via Javascript
Description
The following code shows how to turn off the page transition animation via Javascript.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script>
$(document).bind("mobileinit", function(){
$.mobile.defaultPageTransition = 'none';
});<!-- w ww . j av a2 s . com-->
</script>
<script
src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<div data-role="page" id="zero">
<div data-role="content">
<a data-role="button" href="#one">Go to Next Page</a>
</div>
</div>
<div data-role="page" id="one">
<div data-role="content">
<a data-role="button" href="#zero">Go to Prev. Page</a>
</div>
</div>
</body>
</html>