Linkrust,
лучше конечно посылать значения а не html, как показал
Tek,
но если охота ...
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function () {
$("input").on("input", function () {
var html = $("form").html();
$("div").html(html).find("input").prop({
"defaultValue": this.value
});
$("textarea").val($("div").html())
})
})
</script>
</head>
<body>
<div></div>
<textarea cols="50" rows="5"></textarea>
<form action="http://">
<input type="text" >
</form>
</body>
</html>