WYSIWYG Fast Dynamic JavaScript Editor

I am now using the TinyMCE wysiwyg editor in my projects.

However, tinyMCE has some disadvantages:

  • Tons of GET requests
  • Big
  • slow . At the same time, I cannot have a large number of TinyMCE editors. (Especially in IE)
  • Changing the DOM position in TinyMCE caused problems in which listeners were lost.
  • It is difficult to generate new TinyMCE editors dynamically at runtime.
  • Tight control with jQuery

Is there any WYSIWYG editor you would suggest?

A big plus will be a jQuery based editor, as this project works with jQuery anyway.

+3
source share
3 answers

You can try CKEditor http://ckeditor.com/blog/CKEditor_for_jQuery (formerly FCKeditor)

+3
source

I suggest jHtmlArea, its jQuery and its pretty fast

  • 1 image file using CSS sprites
  • 1 line javascript, 1 line CSS

I used it in many projects before and not bad.

http://jhtmlarea.codeplex.com/

+3
source

CKEditor Slow!

If you need something as fast as possible, you can use http://unverse.net/Whizzywig-2011 , but its ugly, so there is something like http://aloha-editor.org/

0
source

Source: https://habr.com/ru/post/1754089/


All Articles