Add header to listview item
Description
The following code shows how to add header to listview item.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.7.1.js'></script>
</head><!--from w w w . j a v a 2 s .co m-->
<body>
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>
<div data-role="page" data-theme="d">
<div data-role="content">
<ul id="lv" data-role="listview" data-inset="true" data-theme="c"
data-dividertheme="b">
<li data-role="list-divider">List Divider</li>
<li>
<h3>
<a href="#">This is an anchor inside a h3</a>
</h3>
<p>Paragraph text</p>
</li>
</ul>
</div>
</div>
</body>
</html>