Handle Keypress Event - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:keypress

Description

Handle Keypress Event

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://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/* www  . ja  v  a  2s . c  o m*/
$(".pack").keyup(function(){
    $(".pack2").val($(this).val());
});
    });

      </script> 
   </head> 
   <body> 
      <input type="text" class="pack"> 
      <input type="text" class="pack2">  
   </body>
</html>

Related Tutorials