Get textarea value once a key pressed - Javascript jQuery

Javascript examples for jQuery:Form Textarea

Description

Get textarea value once a key pressed

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <script type="text/javascript" src="https://code.jquery.com/jquery-1.7.1.js"></script> 
  <script type="text/javascript">
    $(window).load(function(){/*w  ww . jav a  2 s  .  c o m*/
$('#gdoron').keypress(function(e){
    var value = this.value;
    console.log(value);
    console.log(value + String.fromCharCode(e.which))
})
    });

      </script> 
 </head> 
 <body> 
  <textarea id="gdoron"></textarea>  
 </body>
</html>

Related Tutorials