I've been working on a way to integrate FCKeditor into Wordpress (wordpress.org) by creating a wordpress plugin. The editor itself does not seem to have a problem, but in order to be completely integrated, I had to create plugins to insert specific Wordpress tags - namely <!--more--> and <!--nextpage-->. Since there's no text to select, the code to do it will be a simple
FCK.InsertHtml("<!--more-->").
This works OK with Gecko but does not work in IE. Since this tags are actually comments, I think the InsertHTML might have a "different" behaviour in IE...
FCK.InsertHtml("<!--more-->").
This works OK with Gecko but does not work in IE. Since this tags are actually comments, I think the InsertHTML might have a "different" behaviour in IE...