Guest User

Untitled

a guest
Oct 31st, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  7.  
  8. </head>
  9.  
  10. <body>
  11.     <input type="text" id="livebox" >
  12. </body>
  13.  
  14. <script>
  15.     $(document).ready(function(){
  16.         $("#livebox").on("input",function(e){
  17.             text =$("#livebox").val();
  18.             console.log(text)
  19.         });
  20.     })
  21.    
  22.     var input = document.getElementById("livebox");
  23.     console.log(input)
  24.    
  25. </script>
  26.  
  27. </html>
Add Comment
Please, Sign In to add comment