Create icon only info button
Description
The following code shows how to create icon only info button.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head><!-- www.j ava 2 s. co m-->
<body>
<form id="loginForm" action="" method="post">
<a id="info"
href=""
data-role="button"
data-icon="info"
data-iconpos="notext">Info</a>
</form>
</body>
</html>