Align text along with icon on button
Description
The following code shows how to align text along with icon on button.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-2.0.2.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.css">
</head><!--from ww w .ja va 2 s .c o m-->
<body>
<div data-role="page" id="mobile">
<div data-role="content">
<div data-role="controlgroup" data-type="horizontal" class="ui-body">
<a href="" data-role="button" data-mini="true"
data-icon="bars">Test</a>
<a href="" data-role="button"
data-mini="true" data-icon="grid">Test1</a>
</div>
</div>
</div>
</body>
</html>