FCKEditorAPI.GetInstance('ed') was not throwing the exception. The assign operation 'editor=...' did. For some reason a global object 'editor' exists, that does not seem to allow the assign operation. I simply used a different variable name and that fixed the issue. I have a couple of other scripts in the page including yui, yui-ext that could have caused this. But I don't see a reason why this problem only appears in IE.
RE: FCKeditorAPI.GetInstance fails in IE ?
FCKEditorAPI.GetInstance('ed') was not throwing the exception. The assign operation 'editor=...' did.
For some reason a global object 'editor' exists, that does not seem to allow the assign operation. I simply used a different variable name and that fixed the issue. I have a couple of other scripts in the page including yui, yui-ext that could have caused this. But I don't see a reason why this problem only appears in IE.
RE: FCKeditorAPI.GetInstance fails in IE ?
In other browsers you have to do document.getEementById("myDiv").innerHTML; but in IE you can just do myDiv.innerHTML
Sorry I was going to suggest this to you yesterday but got distracted.
HTH
Ron