View Single Post
Old 09-28-2012, 05:21 PM   PM User | #2
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,383
Thanks: 18
Thanked 350 Times in 349 Posts
sunfighter is on a distinguished road
Code:
<!DOCTYPE html>
<html>
<head>
<script>
function opie()
{
  document.getElementById('myplace').innerHTML = document.getElementById('myinput').value;
}
</script>
</head>

<body>
<form>
<input type="text" id="myinput" onkeyup="opie();"
<hr>
<hr>
<hr>
<textarea id="myplace" maxlength="20"></textarea>
</form>
</body>
</html>
list box is a M$ thing.
sunfighter is offline   Reply With Quote