tags:

views:

288

answers:

3

Which is the good Rich Text Editor (RTE) in jQuery ? which make best use of jQuery and easy to implement. Thanks in advance

+3  A: 

I would checkout TinyMCE for this. Most of what you're dealing with in a text area isn't improved by what jQuery offers, TinyMCE however does have a jQuery version (which removes redundant code jQuery can take care of) and a wrapper plugin that makes it very quick/easy to implement.

Here's an example:

$('textarea.tinymce').tinymce({ script_url: '../tiny_mce.js' });
Nick Craver
+1  A: 

Try markItUp! jQuery plugin. It is universal editor. You can even use BBCode with it.

Tim
A: 

And another one...this one is used by alot of the CMS applications out in the wild...

Wymeditor

Tommy
Just tried the demo..... maybe it's just me, but I found it highly unimpressive.
Mark
Eh, no problem! I actually looked into Nick's TinyMCE - I think I like it better anyways :)
Tommy