Create navbar with icon on top
Description
The following code shows how to create navbar with icon on top.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.5.2.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head><!-- w w w . ja v a 2s . c om-->
<body>
<div data-role="page" data-theme="b" id="jqm-home">
<div data-role="content">
<footer data-role="footer">
<div data-role="navbar" data-iconpos="top">
<ul>
<li><a href="" class="ui-btn-active" data-icon="star">Fav</a></li>
<li><a href="" data-icon="back">Recent</a></li>
<li><a href="" data-icon="delete">Contacts</a></li>
<li><a href="" data-icon="grid">Keypad</a></li>
<li><a href="" data-icon="delete">Voicemail</a></li>
</ul>
</div>
</footer>
</div>
</div>
</body>
</html>