Open a popup with listview
Description
The following code shows how to open a popup with listview.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-2.0.2.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.css">
</head><!-- w ww. ja v a 2s .c o m-->
<body>
<div data-role="page" id="home">
<div data-role="content">
<p>
<a href="#menu-items" data-rel="popup">Open Popup</a>
</p>
</div>
<div id="menu-items" data-role="popup">
<ul data-role="listview">
<li><a href="">google.com</a></li>
<li><a href="">google.com</a></li>
</ul>
</div>
</div>
</body>
</html>