How can I change the value of a text area via jQuery. Here is an example:
var content = "Hello World"; //Code to set the value of the text area to content here.
How do I do this through jQuery or just javascript? The answer is welcome, thanks. I tried this:
var txtArea = document.getElementById('aTextArea'); txtArea.value = rolls;
However, it was just a shot in the dark.
javascript jquery html
Jack davis
source share