Add tab to navbar
Description
The following code shows how to add tab to navbar.
Example
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.ui-page .ui-footer .ui-btn-text {<!-- w ww .j av a 2 s . c o m-->
font-size: 20px;
}
</style>
</head>
<body>
<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>
<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="" data-role="tab" data-icon="grid"
class="ui-btn-active">Page 1</a></li>
<li><a href="" data-role="tab" data-icon="grid">Page
2</a></li>
<li><a href="" data-role="tab" data-icon="grid">Page
3</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>