jQuery Mobile - Listview Icons: 16x16



Description

Include class of ui-li-icon in the image element to add image of 16 X 16 pixels in the list item.

Example

Following example demonstrates the use of Icon 16 X 16 in the list in the jQuery Mobile.

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>

   <body>
      <h2>Icon 16X16 List Example</h2>
      <ul data-role = "listview" data-inset = "true">
         <li><a href = "#"><img src = "/jquery_mobile/images/apple.jpg" 
            class = "ui-li-icon ui-corner-none">Apple</a></li>
         <li><a href = "#"><img src = "/jquery_mobile/images/banana.jpg" 
            class = "ui-li-icon ui-corner-none">Banana</a></li>
         <li><a href = "#"><img src = "/jquery_mobile/images/mango.jpg" 
            class = "ui-li-icon ui-corner-none">Mango</a></li>
         <li><a href = "#"><img src = "/jquery_mobile/images/strawberry.jpg" 
            class = "ui-li-icon ui-corner-none">Strawberry</a></li>
         <li><a href = "#"><img src = "/jquery_mobile/images/grapes.jpg" 
            class = "ui-li-icon ui-corner-none">Grapes</a></li>
      </ul>
   </body>
</html>

Output

Let's carry out the following steps to see how the above code works −

  • Save the above html code as listview_icons_16.html file in your server root folder.

  • Open this HTML file as http://localhost/listview_icons_16.html and the following output will be displayed.

jquery_mobile_widgets.htm
Advertisements