codice:
<html>

<head>
<script type="text/javascript">
function copia() {
document.getElementById('due').value = document.getElementById('uno').value
}

</script>

</head>

<body>
<textarea id="uno"></textarea>
<textarea id="due"></textarea>
<input type="button" value="copia" onClick="copia();">



</body>

</html>