Add listview to page content
Description
The following code shows how to add listview to page content.
Example
<!DOCTYPE html>
<html>
<head>
<title>- jsFiddle demo by jasper</title>
<style type='text/css'>
.ui-page .ui-content .ui-listview {<!--from w w w .jav a 2s . com-->
margin-right: 10px;
}
</style>
</head>
<body>
<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>
<div data-role="page">
<div data-role="content">
<ul data-role="listview">
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
</ul>
</div>
</div>
</body>
</html>