Advertisement
Guest User

evil

a guest
Aug 21st, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3.  
  4. <html lang="pt-BR">
  5.  
  6. <head>
  7.  
  8. <meta charset="UTF-8">
  9. <script type="text/javascript" <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  10. <link rel="stylesheet" href="evil.css">
  11. </head>
  12.  
  13. <body>
  14.  
  15. <div id="newWord">
  16.   <form>
  17.   <h5> Veja com o f12</h5>
  18.     <input type="text" placeholder="New Hashtag">
  19.   </form>
  20. </div>
  21. </body>
  22.  
  23. <script>
  24. $(document).ready(function() {
  25.     $("input").keyup(function(e) {
  26.         var currentInput = $(this).val();
  27.         console.log(currentInput);
  28.         if (e.keyCode == 13){
  29.             console.log('hello');
  30.         }
  31.     });
  32. })
  33.  
  34. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement