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 like the page to load and the user can immediately start typing w/o having to click the text area.
Here is the current code that initiated CKEDITOR
<script type="text/javascript">
CKEDITOR.replace( 'meeting_notes',
{
toolbar :
[
[ 'Bold', 'Italic', 'Underline', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
['Cut','Copy','Paste','PasteText'],
['Undo','Redo','-','RemoveFormat'],
['TextColor','BGColor'],
['Maximize']
]
});
</script>
Thanks