Page 105 - JqueryMobile_Manual
P. 105

105

                                                 Change the icon position
                                               tryjqmob_forms_select_iconpos.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">
                 <div data-role="header">
                 <h1>Select Menus</h1>
                 </div>

                 <div data-role="main" class="ui-content">
                   <form method="post" action="/action_page_post.php">
                       <fieldset data-role="controlgroup">
                         <legend>In this example, we have changed the icon position to the left side of the select menu
               (default is right).</legend>
                           <label for="day">Select Day</label>
                           <select name="day" id="day" data-iconpos="left">
                             <option value="mon">Monday</option>
                             <option value="tue">Tuesday</option>
                           </select>
                       </fieldset>
                     <input type="submit" data-inline="true" value="Submit">
                   </form>
                 </div>
               </div>

               </body>
               </html>
                                                   Create a slider control
                                                   tryjqmob_forms_slider.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">
                 <div data-role="header">
                   <h1>Slider Control</h1>
                 </div>

                 <div data-role="main" class="ui-content">
                   <form method="post" action="/action_page_post.php">
                     <label for="points">Points:</label>
   100   101   102   103   104   105   106   107   108   109   110