views:

362

answers:

2

I am after a JavaScript Rich Text Editor that supports highlighting words and triggering events when those highlighted words are clicked, like what Gmail does when in spellcheck mode.

I will need to heavily customize any existing solution, so something that is easy to extend would be ideal. Currently I am leaning towards TinyMCE.

+1  A: 

TinyMCE seems to be the best one these days. You might want to take a look at FCKEditor and HTMLArea as well. You can find a list of such WYSIWYG HTML editors here.

fviktor
+1  A: 

Richtextbox or HTML?

If it is HTML, then you should stick with TinyMCE. :

  • It's (very) easy to integrate
  • It works across browsers
  • The toolbars were easy to modify
  • Wordpress uses it!

For what its worth, we also looked at FCKEditor but preferred TinyMCE

UPDATE: While some users wanted it, spell checking has never been on the "essentials" list. It has always been quicker / cheaper for us to teach the handful of users how to use the spell checking features of IE, Firefox or Chrome instead of putting it in the editor.

Imagine trying to code the 3 been soup example!!!

Christian Payne