Create icon button controlgroup
Description
The following code shows how to create icon button controlgroup.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
</head><!-- w w w.ja v a2 s. c o m-->
<body>
<div data-role="controlgroup" data-type="horizontal" data-mini="true"
data-iconpos="center">
<a href="#" data-role="button" data-icon="plus" data-iconpos="notext"
data-theme="b">Add</a>
<a href="#" data-role="button"
data-icon="delete" data-theme="b" data-iconpos="notext">Delete</a>
<a href="#" data-role="button" data-icon="grid" data-theme="b"
data-iconpos="notext">More</a>
</div>
</body>
</html>