Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Modal Test</title>
  4. <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
  5.  
  6. <script type="text/javascript">
  7. $(document).ready(function(){
  8.  
  9. $('#modalsummary').click(function(e){
  10. $('#modal').show();
  11. e.preventDefault();
  12.  
  13. });
  14.  
  15. });
  16.  
  17. </script>
  18. </head>
  19. <body>
  20. <input type="text" id="modal" name="modal" style="display:none;" autofocus>
  21.  
  22.  
  23.  
  24. <input id="modalsummary" class="modalsummary" type="submit" value="SignUP">
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement