Make textbox hold value on click. - Javascript jQuery

Javascript examples for jQuery:Form Text Input

Description

Make textbox hold value on click.

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(){//w ww . ja v a  2  s .c o  m
$(function() {
    $('p').click(function() {
        var v = $(this).text();
        $(this).html('<input value="' + v + '" type="text" id="box1" />');
    });
});
    });

      </script> 
 </head> 
 <body> 
  <p>hello there</p> 
  <p>another thing</p>  
 </body>
</html>

Related Tutorials