Jquery Mobile - List View with Icons
This example displays the usage of icons with the listview in JQM.
by Shreerang Patwardhan
HTML
<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>
<!DOCTYPE html>
<html>
<head>
<title>Jquery Mobile - List View with Icons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<ul data-role="listview">
<li>
<a href="#">Spatial Unlimited
<img class="ui-li-icon" src="http://www.cynamix.net/wp-content/uploads/2012/05/Blogger-Logo-80x801.png" /></a>
</li>
<li>
<a href="#">Google Maps API Examples
<img class="ui-li-icon" src="http://www.coldfusiontimes.com/images/articles/google-maps_streetview.gif" />
</a>
</li>
<li>
<a href="#">Jquery Mobile Examples
<img class="ui-li-icon" src="http://www.h-online.com/imgs/43/9/8/6/3/0/9/jQueryMobile_80-310cdbb54c204225.png" />
</a>
</li>
</ul>
</body>
</html>