Use your own image as data icon
Description
The following code shows how to use your own image as data icon.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script
src="http://code.jquery.com/mobile/1.0.1/jquery.mobile-1.0.1.min.js"></script>
<!-- www . j a v a 2 s . c o m-->
<style type='text/css'>
.ui-icon-myapp-smiley {
background-image: url(http://placehold.it/20x20) !important;
}
</style>
</head>
<body>
<div data-role="page">
<div data-role="content">
<ul data-role="listview">
<li data-icon="myapp-smiley"><a href="#">Item</a></li>
</ul>
</div>
</div>
</body>
</html>