Anyone know how to autofocus on the CKEDITOR text area on page load?
Currently the user has to click in the text area before they can start typing. Like Google, I\'d lik
In your config simply do this:
config.startupFocus = true;
Perhaps the startupFocus
config option?
CKEDITOR.replace( 'meeting_notes',
{
startupFocus : true,
toolbar :
...
I've not tried it myself, but check out the CKEDITOR.config.startupFocus.
Definition: Sets whether the editor should have the focus when the page loads.