Change listview divider style
Description
The following code shows how to change listview divider style.
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 w w . j av a 2 s . c o m-->
<body>
<div data-role="page" id="home">
<div data-role="container">
<ul data-role="listview" data-inset="true" data-divider-theme="d">
<li data-role="list-divider">
<a href="#" STYLE="text-decoration: none; color: black;">Mail</a></li>
<li><a href="#">Inbox</a></li>
<li><a href="#">Outbox</a></li>
<li data-role="list-divider">
<a href="#" STYLE="text-decoration: none; color: black;">Contacts</a></li>
<li><a href="#">Friends</a></li>
<li><a href="#">Work</a></li>
<li data-role="list-divider">
<a href="#">Contacts</a></li>
<li><a href="#">Friends</a></li>
<li><a href="#">Work</a></li>
</ul>
</div>
</div>
</body>
</html>