Page 69 - JqueryMobile_Manual
P. 69

69

                   </div>
                 </div>
               </div>

               </body>
               </html>

                                                        Chapter 12
                                                   jQuery Mobile Lists
                                                      Create list views
               tryjqmob_lists_views.html
               <!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>

               <div data-role="page" id="pageone">
                 <div data-role="main" class="ui-content">
                   <h2>Ordered List:</h2>
                   <ol data-role="listview">
                     <li><a href="#">List Item</a></li>
                     <li><a href="#">List Item</a></li>
                     <li><a href="#">List Item</a></li>
                   </ol>
                   <h2>Unordered List:</h2>
                   <ul data-role="listview">
                     <li><a href="#">List Item</a></li>
                     <li><a href="#">List Item</a></li>
                     <li><a href="#">List Item</a></li>
                   </ul>
                 </div>
               </div>

               </body>
               </html>

                                             List views with rounded corners
                                                    tryjqmob_lists_inset.html
               <!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>

               <div data-role="page" id="pageone">
                 <div data-role="main" class="ui-content">
   64   65   66   67   68   69   70   71   72   73   74