Dynamically add and change page
Description
The following code shows how to dynamically add and change page.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.4.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0rc2/jquery.mobile-1.0rc2.min.js"></script>
</head><!-- w w w .j a v a 2 s.c om-->
<body>
<body id="body">
<div data-role="page">
<input type="button" id="button" value="button" onclick="change()" />
</div>
</body>
<script type='text/javascript'>
function change(){
$('#body').append("<div id='newPage' data-role='page'>Second Page </div>");
$.mobile.changePage("#newPage");
}
</script>
</body>
</html>