Page 95 - JqueryMobile_Manual
P. 95

95

                                              Place the form inside a popup
                                                  tryjqmob_forms_popup.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>Welcome To My Homepage</h1>
                 </div>

                 <div data-role="main" class="ui-content">
                   <a href="#myPopup" data-rel="popup" class="ui-btn ui-btn-inline ui-corner-all ui-icon-check ui-btn-icon-
               left">Show Popup Form</a>

                   <div data-role="popup" id="myPopup" class="ui-content" style="min-width:250px;">
                     <form method="post" action="/action_page_post.php">
                       <div>
                         <h3>Login information</h3>
                         <label for="usrnm" class="ui-hidden-accessible">Username:</label>
                         <input type="text" name="user" id="usrnm" placeholder="Username">
                         <label for="pswd" class="ui-hidden-accessible">Password:</label>
                         <input type="password" name="passw" id="pswd" placeholder="Password">
                         <label for="log">Keep me logged in</label>
                         <input type="checkbox" name="login" id="log" value="1" data-mini="true">
                         <input type="submit" data-inline="true" value="Log in">
                       </div>
                     </form>
                   </div>
                 </div>

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

               </body>
               </html>

                           Prevent jQuery Mobile to automatically style tappable elements
                                                   tryjqmob_forms_none.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>
   90   91   92   93   94   95   96   97   98   99   100