Add round buttons to header
Description
The following code shows how to add round buttons to header.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.7.1.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.js"></script>
<style type='text/css'>
.grid.ui-btn-right {
right: 30px;
}<!-- w w w. j a v a 2 s. co m-->
</style>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Header</h1>
<a href="" data-icon="grid" data-iconpos="notext"
class="jqm-home ui-btn-right grid">Menu</a>
<a href=""
data-icon="search" data-iconpos="notext" data-direction="reverse"
class="jqm-home ui-btn-right">Search</a>
</div>
<div data-role="content"></div>
<div data-role="footer">
<h1>Footer</h1>
</div>
</div>
</body>
</html>