I know I did ask this question earlier but here is my problem in details:
- if I copy the text from textarea1 to textarea2 using a JavaScript program, it works fine
- if I attach the teaxtarea1 with a WYSIWYG editor then it refuses to work. And I am using openWYSIWYG.
Why can't I can copy the plain text from textarea1 when it is attached to a WYSIWYG?
The code I am using for copying it without a WYSIWYG is:
function postChange() {
document.forms["form1"].textarea2.value = document.forms["form1"].textarea1.value;
}