Page 107 - JqueryMobile_Manual
P. 107

107

                 <div data-role="main" class="ui-content">
                   <form method="post" action="/action_page_post.php">
                     <label for="points">Points:</label>
                     <input type="range" name="points" id="points" value="50" min="0" max="100" data-popup-
               enabled="true">
                     <input type="submit" data-inline="true" value="Submit">
                   </form>
                 </div>
               </div>

               </body>
               </html>

                                        Highlight the track up to the slider value
                                              tryjqmob_forms_slider_highlight.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>
                     <input type="range" name="points" id="points" value="50" min="0" max="100" data-highlight="true">
                     <input type="submit" data-inline="true" value="Submit">
                   </form>
                 </div>
               </div>

               </body>
               </html>

                                                    Range slider (dual)
                                               tryjqmob_forms_slider_range.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>
   102   103   104   105   106   107   108   109   110   111   112