InterviewSolution
Saved Bookmarks
| 1. |
What Is The Use Of Data-role As List View In J Query Mobile? |
|
Answer» data-role = "listview" in Jquery MOBILE is USED to create a BULLETED list of item as shown below: <ul data-role="listview" ></br><LI><a href="#">A</a></li></br> <li><a href="#">B</a></li></br> <li><a href="#">C</a></li></br> <li><a href="#">D</a></li></br> </ul> data-role = "listview" in Jquery Mobile is used to create a bulleted list of item as shown below: |
|