Html code:
<input class="input" type="text" value=""/> <textarea class="textarea" rows="3" cols="10">700</textarea>
JQuery code after loading page:
var $textarea = $(".textarea"); $(document).on('keyup','.input', function(){ $textarea.text($(this).val()); });
Same thing on jsfiddle.net
UPDATE: Updated example. Now there is a piece of text that does not change.