views:

16349

answers:

14

Something like this one on the Stackoverflow site would be nice!

Or something non-jQuery that doesn't conflict with jQuery $() tags would be great.

+14  A: 

Try TinyMCE. It's great!

you find the jQuery integration Plugin here

knight_killer
+6  A: 

Stack Overflow uses WMD.

Dominic Rodger
There's also now the reverse engineered version at http://github.com/derobins/wmd, with some bug fixes.
Matthew Maravillas
+4  A: 

For full on html (rather than WMD style b / i / a) I normally use http://www.fckeditor.net/. Customisation can be a little cumbersome, but reliable once in place.

digital delivery
+3  A: 

I posted a similar question here: http://stackoverflow.com/questions/180827/unobtrusive-javascript-rich-text-editor

Herb Caudill
+2  A: 

For me markitup is an excellent editor. It does rich text as a markup editor and allows you to use different standards: html, wiki, UBB, etc... It also allows plugins very easily.

Jeremy B.
+2  A: 
  • WYMeditor (What You See Is What You Mean) is a jQuery plugin.
  • jWysiwyg is an alternative with much less features
Michel
+1  A: 

I really like Yahoo's YUI Rich Text Editor.

Shawn Simon
A: 

Tiny MCE is the best IMHO - I have tired a ton of them and Tiny has the best over features, easy to create content templates, easy to set which CSS is shown in the editor and used to display it, very large API, great skins, ect...

Slee
+12  A: 

I'm surprised nobody has mentioned markitup:

markItUp! is a JavaScript plugin built on the jQuery library. It allows you to turn any textarea into a markup editor. Html, Textile, Wiki Syntax, Markdown, BBcode or even your own Markup system can be easily implemented.

alt text

Chris S
Markitup is great, but it's not really a rich editor. It just adds buttons to a normal textarea. When people say "rich editor," they generally mean WYSIWYG.
Trevor Burnham
Jeremy B did mention it about 4 months before your answer. Guess a picture is worth a dozen votes. :)
Great Turtle
@Great Turtle My answer is like the iPhone 4, and has the glass effect
Chris S
+5  A: 

I personaly use FCK because Tiny MCE does't handle html editing well, small changes in html produce lots of unececary html tags.

Edin
+2  A: 

here you can find 10 jquery and Non-jquery Text Editors: www.queness.com

mahdiahmadirad
+3  A: 

IMHO tinyMce and ckeditors are way too bloated. I've tried a lot of different editors that would be jquery plugins and the best one to my taste is HtmlBox. It's extremely small = 14Kb minified (without icons) and unobtrusive.

I've tried all of these: 1. Avidan editor 2. Wymeditor 3. ueditor 4. RTE Jquery 5. jwysiwyg (GNU2) 6. jhtml area (Microsoft public license) 7. htmlbox (mit license) 8. TinyMCE (gnu) 9. Ckeditor (as well as FCKeditor)

andrei
A: 

The free Visual Web Developer 2010 Express has JQuery intellisense out-of-the-box, be sure to use the full jquery file javascript/jquery-1.4.2.js instead of the minimized one:

alt text

Edward Tanguay
A: 

CLEditor is an open source jQuery plugin which provides a lightweight (just over 9K with icons), full featured, cross browser, extensible, WYSIWYG HTML editor that can be easily added into any web site. http://premiumsoftware.net/cleditor

Chris Landowski