Set default transition for slide
Description
The following code shows how to set default transition for slide.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script>
$(document).bind('mobileinit', function () {
$.mobile.defaultPageTransition = 'slide';
});<!-- ww w . ja v a 2 s . com-->
</script>
<script
src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.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 Previous Page</a>
</div>
</div>
<script type='text/javascript'>//<![CDATA[
$(document).delegate('.ui-page', 'pageinit', function () {
$(this).find('[data-role="button"]').attr('data-direction', 'reverse');
});
//]]>
</script>
</body>
</html>