Fix footer to bottom
Description
The following code shows how to fix footer to bottom.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.8.3.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
</head><!-- w w w .ja va 2s .c o m-->
<body>
<div data-role="page">
<div data-role="header">
<h1>My Title</h1>
</div>
<!-- /header -->
<div data-role="content">
<p>Hello world</p>
</div>
<!-- /content -->
<div data-role="footer" data-position="fixed">
<h1>Fixed Footer!</h1>
</div>
</div>
<!-- /page -->
</body>
</html>