Add navbar to footer
Description
The following code shows how to add navbar to footer.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<!-- w ww. j a v a2 s .c om-->
<style type='text/css'>
.ui-page .ui-footer .ui-btn-text {
font-size: 20px;
}
.ui-page .ui-footer .ui-navbar a {
height: 100px;
}
</style>
</head>
<body>
<div data-role="page">
<div data-role="content">
<p>Test Page</p>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#page-1" data-role="tab" data-icon="grid"
class="ui-btn-active">Page 1</a></li>
<li><a href="#page-2" data-role="tab" data-icon="grid">Page
2</a></li>
<li><a href="#page-3" data-role="tab" data-icon="grid">Page
3</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>