Numbered Lists
Description
Numbered lists will be created when using an ordered list <ol>.
By default the framework will add the numerical index to the left of each list item.
Example
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<style>
<!-- w ww . j a v a 2 s.co m-->
.segmented-control {
text-align: center;
}
.segmented-control .ui-controlgroup {
margin: 0.2em;
}
.ui-control-active, .ui-control-inactive {
border-style: solid;
border-color: gray;
}
.ui-control-active {
background: #BBB;
}
.ui-control-inactive {
background: #DDD;
}
</style>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="content">
<ol data-role="listview">
<li><a href="#">A</a></li>
<li><a href="#">B</a></li>
<li><a href="#">C</a></li>
<li>D</li>
<li>E</li>
<li><a href="#">F</a></li>
<li><a href="#">G</a></li>
<li><a href="#">H</a></li>
<li><a href="#">I</a></li>
</ol>
</div>
</div>
</body>
</html>