Before I implemented Fckeditor, I had a JS to put a string at the end of the whole text:
Now, the access to the textarea doesn't work. How can I access the text and modify it with JS?
document.getElementById('inhalt').value += 'any_content_here';
Now, the access to the textarea doesn't work. How can I access the text and modify it with JS?
Re: Accessing the editor area by JavaScript (to modify the text)
Finally, I found the API. With the following code, it works fine.