I am getting an 'oEditor not defined' from the 'alert' when the following function is called. I have multiple editors on the page. Version 2.6.3.
function FCKeditor_OnComplete( editorInstance ){
var oEditor = FCKeditorAPI.GetInstance(editorInstance.Name);
alert(oEditor.EditorDocument.body.style.cssText);
}
?????????
TIA
function FCKeditor_OnComplete( editorInstance ){
var oEditor = FCKeditorAPI.GetInstance(editorInstance.Name);
alert(oEditor.EditorDocument.body.style.cssText);
}
?????????
TIA
Re: Cant access the API object