Page 91 - JqueryMobile_Manual
P. 91

91

                     </div>
                     <input type="submit" data-inline="true" value="Submit">
                   </form>
                 </div>
               </div>

               </body>
               </html>

                                                       Radio buttons
                                                   tryjqmob_forms_radio.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>Radio Buttons</h1>
                 </div>

                 <div data-role="main" class="ui-content">
                   <form method="post" action="/action_page_post.php">
                     <fieldset data-role="controlgroup">
                     <legend>Choose your gender:</legend>
                       <label for="male">Male</label>
                       <input type="radio" name="gender" id="male" value="male">
                       <label for="female">Female</label>
                       <input type="radio" name="gender" id="female" value="female">
                     </fieldset>
                       <input type="submit" data-inline="true" value="Submit">
                   </form>
                 </div>
               </div>

               </body>
               </html>

                                                         Checkboxes
                                                 tryjqmob_forms_checkbox.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>
   86   87   88   89   90   91   92   93   94   95   96