I have several CKEditor windows on a single page; they are invoked by a simple "ckeditor" style selector. Unexpectedly, after all plugin instances get initialized, page spontaneously scrolls to the lowest editor window (not smooth scrolling but a single-jump).
Can anyone imagine what's the problem this may be?
Can anyone imagine what's the problem this may be?

The editor is near the bottom of a page full of posts. Loading the page always results in a scroll bar "jump" so that the first line of the body of the editor shows at the bottom of the page. If I have Firebug expanded at the bottom of the browser, it scrolls in to view above Firebug.
The editor instance is blank, i.e., I'm not feeding it any text to begin with.
I've tried both the full load and the basic (deferred) load.
I am instantiating the editor using replace with a textarea via PHP. Of course, if I comment the replace method, the scroll does not occur (and the editor doesn't load):
$CKeditor->replace('post_text',array('toolbar'=>'Forums'));
Any help or insight into this would be greatly appreciated.
Please add your email in CC field to be notified on any updates.
Thank you for report.
Please help. Thanks in advance
viewtopic.php?f=11&t=20871
Could you be a little more specific on what you did? I added the line "config.removePlugins = 'wysiwygarea';" to config.js and custom/config.js, but nothing changed. I'm using FF though, so that might be it.
Hmmm, I checked again and -enabled- wysiwigarea again. It still doesn't scroll. Maybe it is the hash key thing (see my post above yours) because that I can reproduce - if I have a hash key in the url it scrolls, if I don't it doesn't
Thanks for the help, I've got no hashes in my URL so it's probably a problem with FF. Either way, it's still a bug, so I created a new ticket http://dev.ckeditor.com/ticket/6792
onload="setTimeout('self.scrollTo(0,0)',400);"
Don't respond and tell me it's inelegant. I KNOW. But it's a quick fix that might help someone else so I'm posting it here.
It only occurs if the element I'm replacing is empty. Interestingly, this attempted workaround does NOT work: I set the textarea contents, call CKEDITOR.replace, and then call setData("") on the ckeditor instance. The bug still recurs.
<textarea [atributes]> </textarea>
so the scroll doesn't occur. And when you go to the textarea to insert text, it behaves like it hasn't any text inside before (even using the button "HTML source", it is empty)
Cheers!