Jquery Mobile - Readonly Listviews

This JQM exaample shows how to create a non-interactive or ready-only listview.

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>Jquery Mobile - Readonly List View</title>
	<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
    <ul data-role="listview">
        <li>Spatial Unlimited</li>
        <li>Google Maps API Examples</li>
        <li>Jquery Mobile Examples</li>
    </ul>
</body>
</html>