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
2010-04-06 14:36:50
A:
And another one...this one is used by alot of the CMS applications out in the wild...
Tommy
2010-04-06 14:40:03
Just tried the demo..... maybe it's just me, but I found it highly unimpressive.
Mark
2010-04-08 06:24:05
Eh, no problem! I actually looked into Nick's TinyMCE - I think I like it better anyways :)
Tommy
2010-04-08 11:03:01