Hi Everybody,
I have tried to get the content inside the FCKeditor via "document.frm1.Content1.value" - I get the content but if I change the content inside the FCKeditor I don't get the new content back but instead the old content?
So is there any way I can make sure to get the actual content?
Thanks
/Jesper
Tue, 04/03/2007 - 14:51
#1
RE: How to get the content out via JavaScript
I figured it out by my self and via some searching in the "open discussion" forum.

Here are the solution for others who might be interested
var oEditor = FCKeditorAPI.GetInstance('Content1') ;
alert(oEditor.GetXHTML(true));
Conten1 is the instance of your FCKeditor....
/Jesper