Set split listview theme
Description
The following code shows how to set split listview theme.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.0-beta.1/jquery.mobile-1.3.0-beta.1.css">
</head><!--from w ww . ja va 2s . c om-->
<body>
<ul class="ui-icon-alt" data-role="listview" data-inset="false"
data-split-icon="gear" data-split-theme="d" data-theme="d">
<li><a href="#">
<h2>My List</h2>
<p>My List Description</p>
<p>
<strong>Category</strong>
</p>
</a> <a href="#">Go</a></li>
<li><a href="#">
<h2>My List</h2>
<p>My List Description</p>
<p>
<strong>Category</strong>
</p>
</a> <a href="#">Go</a></li>
<li><a href="#">
<h2>My List</h2>
<p>My List Description</p>
<p>
<strong>Category</strong>
</p>
</a> <a href="#">Go</a></li>
</ul>
</body>
</html>