hi, i thought i had solved this but my basic example seems to not be working. not sure why but i am sure it is a small issue. any help is appreciated.
<html>
<head>
</head>
<body>
<textarea rows="20" cols="61" id="entry" name="entry" class="body_text" wrap="physical">
</textarea>
</body>
</html>
<script>
function keypress(e){
var key_s = (window.event) ? event.keyCode : e.keyCode;
document.getElementById("entry").innerHTML=key_s;
}
</script>