Hello everyone!
I have a small "problem". I'm new in Javascript. I want whatever I write in a textarea field being typed automatically in a <p> I have the script needed but
it gets delayed -1 character. Here's the script. Paste it and tell me what's wrong
<script type="text/javascript">
function writeText(txt)
{
document.getElementById("desc").innerHTML=txt;
}
</script>
Bookmarks