Add delete icon to button
Description
The following code shows how to add delete icon to button.
Example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head><!--from w w w .jav a2s .c o m-->
<body>
<div data-role="page">
<div data-role="content">
<a href="" data-role="button" data-icon="delete">Delete</a>
</div>
</div>
</body>
</html>