Create not fixed footer
Description
The following code shows how to create not fixed footer.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.2.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css">
</head><!-- www .j a va 2 s .co m-->
<body>
<div data-role="page" id="myPage1">
<div data-role="header">
<h1>Page 1 header</h1>
</div>
<h1>Page 1</h1>
<div data-role="footer">
<h1>Page 1 Footer</h1>
</div>
</div>
</body>
</html>