Jquery JavaScript DHTML


  
    
    
        $(document).ready(function(){
           $("button").click(function () {
             var text = $(this).text();
             $("input").val(text);
           });
        });
    
  
  
    
      Press button to fill the text box.