The <textarea> tag doesn't have an "value" attribute so, how do I get the input from it into a JavaScript variable.
For
<form name="myForm">
<input type="text" name="aName">
</form>
this is quite simple:
var javaScriptVariable = document.myForm.aName.value;
But how do I get the same result using a textarea form?
Note: Not interested in getting this on server side via php/perl etc.
I know this may sound silly for many of you, but I'm at the very beginning in the world of web programming.