Page 118 - JqueryMobile_Manual
P. 118

118

                                         Theming collapsible button and content
                                               tryjqmob_themes_collapsibles.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="header">
                   <h1>Insert Page Title Here</h1>
                 </div>

                 <div data-role="main" class="ui-content">
                   <div data-role="collapsible" data-theme="b" data-content-theme="b">
                     <h1>Click me - I'm collapsible!</h1>
                     <p>I'm the expanded content.</p>
                   </div>
                 </div>

                 <div data-role="footer">
                   <h1>Insert Footer Text Here</h1>
                 </div>
               </div>

               </body>
               </html>

                                                        Theming lists
                                                   tryjqmob_themes_lists.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" data-theme="b">
                     <li><a href="#">List Item</a></li>
                     <li><a href="#">List Item</a></li>
                     <li data-theme="a"><a href="#">List Item</a></li>
                     <li><a href="#">List Item</a></li>
                   </ol>
                   <br>
                   <h2>Unordered List</h2>
   113   114   115   116   117   118   119   120   121   122   123