The following is the sample code for loading dynamic list item but down arrow is not displaying.what i have to do for down arrow to diplay....thanx for your help
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
for(i=0;i<10;i++)
{
$("#list").append("<li data-icon='arrow-d'>"+i+"</li>");
}
$("#list").listview();
}
);
</script>
</head>
<body>
<div data-role="page" data-theme="d">
<div data-role="header" data-theme="d">
</div>
<div data-role="content" data-theme="d">
<ul data-role="list-view" id="list"></ul>
</div>
</div>
<ul ></ul>
</body>
</html>