Hello,
I'm trying to change the textarea contents after the editor has loaded, but with no luck.
my simple code.
how can I update the text after the editor is loaded?
thanks for your time!
I'm trying to change the textarea contents after the editor has loaded, but with no luck.
my simple code.
$('#Body').val('test');how can I update the text after the editor is loaded?
thanks for your time!

Re: how to update text after load
// Get the editor instance that we want to interact with. var oEditor = FCKeditorAPI.GetInstance('FCKeditor_1') ; // Set the editor contents (replace the actual one). oEditor.SetData( 'This is the <b>new content<\/b> I want in the editor.' ) ;