JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
            $("input").keypress(function (e) {
                var c = String.fromCharCode(e.which);
                $("p").append($("")).children(":last").append(document.createTextNode(c));
                $("div").text(e.which);
            });
        });
    
  
  
    
     
      

Add text -