views:

191

answers:

1
+1  Q: 

jQuery RTF Editor

I have seen a lot of RTF editors out there, but I can't seem to find one that will let me preload RTF data and display it properly and then spit RTF data back out to me. Does anyone know of any good ones?

For example, if I had this:

<textarea id="rtf">
{\rtf1\ansi{\fonttbl\f0\fswiss Helvetica;}\f0\pard
This is some {\b bold} text.\par
}
</textarea>

I am looking for a jQuery plugin that will display:

This is some bold text.

In an editable textarea and then give me back whatever changes they made in RTF, NOT HTML.

A: 

Try checking out jhtmlarea: http://jhtmlarea.codeplex.com/

icemanind
Doesn't seem to support RTF
Jose Jose
try this instead: http://www.queness.com/post/212/10-jquery-and-non-jquery-javascript-rich-text-editorsThis is a list of the best jquery rtf editors
icemanind