Page 106 - JqueryMobile_Manual
P. 106

106

                     <input type="range" name="points" id="points" value="50" min="0" max="100">
                     <input type="submit" data-inline="true" value="Submit">
                   </form>
                 </div>
               </div>

               </body>
               </html>

                                           Show the value on the slider button
                                              tryjqmob_forms_slider_showvalue.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-show-
               value="true">
                     <input type="submit" data-inline="true" value="Submit">
                   </form>
                 </div>
               </div>

               </body>
               </html>

                                 Make the value popup on the screen as the user slide
                                               tryjqmob_forms_slider_tooltip.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>
   101   102   103   104   105   106   107   108   109   110   111