Getting Value of TextBox
Display the value of a textbox
HTML
<body>
<input type="text" value="first textbox"/><br>
<p></p>
</body>
JavaScript
$('input').keyup(function(){
var getvalue = $('input').val();
$('p').html(getvalue);
}).keyup();