Hey all i want to know what is the concept behind creating the rich text editor. i mean how to create a rich text editor. I want to learn the implementation.

PS: please donot suggest using YUI or any other built in library. I want to make one my own.

So what's the concept behind?

Thanks :)

link|improve this question

74% accept rate
1  
Here are some simple examples that may make learning the basic concept possible: Looking for a Rich Text Editor that is simple – Pekka May 15 '11 at 8:12
feedback

closed as not a real question by Will Dec 9 '11 at 14:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

up vote 8 down vote accepted

The easiest way is the following. It's used by TinyMCE and CKEditor and many others. There are many variations: in particular, if you are creating a code editor, there are clever tricks you can do using textareas and a monospaced font.

  • Dynamically create an iframe and place the editable content within that iframe's document
  • Set the iframe to be editable either by setting its document's designMode property to "on" or by setting its <body> element's contentEditable property to true. Note that designMode support predates contenteditable in Firefox and as a consequence is a lot less buggy.
  • Add buttons (such as bold, italic, insert image, etc) somewhere sensible (such as directly above the editable iframe) in the main document that act on the selected content within the iframe. All browsers supply an execCommand() method (see MSDN and MDN, for example) for doing many of these actions, although there is some variation in exactly how they work and what mark-up they produce.

That's the very basics of how it works. There are tons of other, complicated things that most editors do that aren't immediately obvious, in part to iron out the many differences browsers and in part to provide extra functionality not covered by the built-in browser commands. It's a very complicated and difficult thing to get right that requires a high degree of JavaScript expertise and not something to be taken on lightly.

link|improve this answer
feedback

I won't suggest you look at others to use but I would suggest taking a look at jWYSIWYG to see how it's coded in jQuery.

link|improve this answer
thanks for the response but i am not having knowledge of jquery library. so can you please just tell me what is basic concept?? – codeomnitrix May 15 '11 at 8:21
feedback

you you may want to check this out. i was looking for the same thing! http://www.devguru.com/features/tutorials/wysiwyg/wysiwyg1.html

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.