Add listview to fixed footer
Description
The following code shows how to add listview to fixed footer.
Example
<!--from ww w . j a va2 s.co m-->
<!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.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.css">
</head>
<body>
<div>
<p>Original content</p>
</div>
<footer data-role="footer" data-position="fixed">
<ul data-role="listview">
<li><a href="">Direct Link</a></li>
<li><a href="">Another page</a></li>
<li><a href="#" data-transition='slide'>This has children,
slide it in</a>
<ul data-role="listview">
<li><a href="#">History </a></li>
<li><a href="#">Success</a></li>
<li><a href="#">Current</a></li>
<li><a href="#">Past</a></li>
</ul>
</li>
</ul>
</footer>
</body>
</html>