Guest User

Untitled

a guest
Apr 4th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Hello, world!</title>
  6. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
  7. </script>
  8. <script>
  9. (function(){
  10. $('form > input').keyup(function(){
  11. var empty = false;
  12. $('form > input').each(function(){
  13. if ($(this).val() == ''){
  14. empty = true;
  15. }
  16. });
  17. if (empty){
  18. $('#submitForm').prop('disabled','disabled');
  19. } else {
  20. $('#submitForm').prop('disabled',false);
  21. }
  22. });
  23. })()
  24. </script>
  25. </head>
  26. <body>
  27. <form method="POST">
  28. Username: <input type="text" name="username"><br>
  29. Password: <input type="password" name="password"><br>
  30. <input type="submit" id="submitForm" name="Log In" disabled="disabled">
  31. </form>
  32. </body>
  33. </html>
Add Comment
Please, Sign In to add comment