I have many FCK_instances, i fill them on the FCKeditor_OnComplete event with the content from hidden input fields in the parent document!
in firefox this works incorrect and in ie he sometimes dont perform the code!
what can i do?
function FCKeditor_OnComplete( editorInstance ) { var oEditor = FCKeditorAPI.GetInstance(editorInstance.Name) ; oEditor.Commands.GetCommand('NewPage').Execute(); var content=parent.document.getElementById(editorInstance.Name).value; oEditor.InsertHtml(content); content=null; }
Re: FCKeditor_OnComplete problem with firefox