Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script>
function writeMessage() {
  document.forms[0].mySecondInput.value = document.forms[0].myInput.value;
}
</script>
</head>
<body>
<p>Подія onkeyup виникає, коли клавіша клавіатури знаходиться на шляху ВГОРУ.</p>
<form>
  Введіть ваше ім’я:
  <input type="text" name="myInput" onkeyup="writeMessage()" size="20">
  <input type="text" name="mySecondInput" size="20">
</form>
</body>
</html>