Hi,
How can I access the value inputed in the fckeditor via javascript?
I thought the editor behave as a normal input control, where you only type
Thanks for the help.
Caedo.
How can I access the value inputed in the fckeditor via javascript?
I thought the editor behave as a normal input control, where you only type
var control = document.getElementById("id").value;Thanks for the help.
Caedo.

Re: get value of fckeditor using javascript
var oEditor = FCKeditorAPI.GetInstance('instance') ; var pageValue = oEditor.GetHTML();Re: get value of fckeditor using javascript
that worked for me.
thanks you