I have a page where my fckeditor is near the bottom of the page. Everytime my page loads, it scrolls down to the fckeditor which is not what I want. I have specified a value of false for StartupFocus; shouldn't it stop doing that?
var COMMENT = new FCKeditor('COMMENT') ;
COMMENT.BasePath = "/CFIDE/scripts/fckeditor/" ;
COMMENT.ToolbarSet = "ADC_Basic";
COMMENT.Config['StartupFocus'] = "false";
COMMENT.Value = "";
COMMENT.Create();
var COMMENT = new FCKeditor('COMMENT') ;
COMMENT.BasePath = "/CFIDE/scripts/fckeditor/" ;
COMMENT.ToolbarSet = "ADC_Basic";
COMMENT.Config['StartupFocus'] = "false";
COMMENT.Value = "";
COMMENT.Create();
RE: StartupFocus not working?
try this:
COMMENT.Config['StartupFocus'] = false;
(but I don't know anything about that StartFocus setting)