hi. is there a way to get values from fckeditor with jquery?
i want to get values from the editor to load in a preview dialog. but no mather how i try it wont work.
i tried this javascript code but it wont work at all.
i want to get values from the editor to load in a preview dialog. but no mather how i try it wont work.
i tried this javascript code but it wont work at all.
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1'); var pageValue = oEditor.GetHTML();
Re: Get value from fckeditor with jquery? javascript?
var pageValue = oEditor.GetData();
The above one works for me, but as I know
GetHTML() should also work.
Whats your error msg in error console?
regards