Jquery Mobile - Nested Listviews
This JQM example shows the usage of the Jquery Mobile nested listviews.
by Shreerang Patwardhan
HTML
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css">
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<!DOCTYPE html>
<html>
<head>
<title>Jquet=ry Mobile - Basic List View</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<ul data-role="listview" data-inset="true">
<li>Google Maps API
<ul>
<li><a href="http://shreerangpatwardhan.blogspot.in/2010/11/simple-map-using-google-maps-api-v3.html">Simple Map</a></li>
<li><a href="http://shreerangpatwardhan.blogspot.in/2010/12/dancing-bubble.html">Marker Animation</a></li>
<li><a href="http://shreerangpatwardhan.blogspot.in/2010/12/custom-markers.html">Custom Markers</a></li>
</ul>
</li>
<li>JQuery Mobile
<ul>
<li><a href="http://shreerangpatwardhan.blogspot.in/2012/12/jquery-mobile-page-structure.html">Single Page Structure</a></li>
<li><a href="http://shreerangpatwardhan.blogspot.in/2012/12/the-mobile-meta-tag.html">The Mobile Meta tag</a></li>
<li><a href="http://shreerangpatwardhan.blogspot.in/2013/02/jquery-mobile-customizing-listview.html">Customizing the Listview</a></li>
</ul>
</li>
<li>Spatial Unlimited
<ul>
<li><a href="http://shreerangpatwardhan.blogspot.com">Blog</a></li>
<li><a href="http://feeds2.feedburner.com/ShreerangPatwardhan">RSS Feeds</a></li>
</ul>
</li>
</ul>
</body>
</html>