I use CKeditor.

There are two textarea on page

<textarea name="discription"></textarea> <textarea name="text"></textarea> 

I fasten ckEditor

 <script> CKEDITOR.replace('text', { width: '1000px' }); </script> <script> CKEDITOR.replace('discription', { width: '1000px' }); </script> 

Everything works fine, but when you enter text into one of the textarea, and there you press the enter button, it scrolls the page to the bottom. What a joke is not clear. What could be?

    1 answer 1

    1. In some versions of CkEditor there was such a bug.
      Appeared if you add CkEditor to an empty element. It does not appear in all browsers, but at least in Firefox.
      Stale by adding, say, a space to the contents of an element.

        <textarea name="description">&nbsp;</textarea> <textarea name="text">&nbsp;</textarea> 
    2. In the latest version of CkEditor I could not reproduce your problem (looked in chrome / ff / ie11).

    3. In English there is no word "discription", but there is a word "description"