
Fckeditor taking one blank space on load in chrome only.In all other browsers it is not taking blank space.
I tried below code but it just crashes chrome.
function FCKeditor_OnComplete(editorInstance) {
editorInstance.Events.AttachEvent( 'OnFocus', FCKeditor_OnFocus ) ;
}
function FCKeditor_OnFocus( editorInstance )
{
editorInstance.SetHTML("");
}
Below code resolves that issue.