Right now I am using the TinyMCE wysiwyg editor within my projects.
However there are some disadvantages with tinyMCE:
- Tons of GET requests
- Big
- It is slow. I can't have a large number of TinyMCE editors at the same time. (Especially in IE)
- Changing the DOM position of the TinyMCE caused issues where the listeners got lost.
- Complicated to generate new TinyMCE editors dynamically during "runtime".
- Hard to control by jQuery
Is there any WYSIWYG editor you would suggest?
A big plus would be a jQuery based editor as this project works with jQuery anyway.