Split listview to two parts
Description
The following code shows how to split listview to two parts.
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>
</head><!-- w w w . ja va 2 s . c o m-->
<body>
<div data-role="page">
<div data-role="content">
<ul data-role="listview">
<li><a href="#">
<h3>DisplayName</h3>
<p>JobTitle</p>
</a>
<a data-icon="gear" href="mailto:EmailAddress">EmailAddress</a>
</li>
</ul>
</div>
</div>
</body>
</html>