Here is the demo:

http://www.kevinroth.com/rte/demo.htm

when I use firebugs to inspect the source code, I see that it is iFrame only, but how can the iFrame have a text area behavior?? Any ideas on how to implement this? Thank in

link|improve this question

61% accept rate
feedback

2 Answers

In that frame you can see a full HTML source that builds up something that looks like a text area + toolbar + stuff. A complicated Javascript is doing all the trick behind. E.g. if you select some text and make it bold with the toolbar than the script places <strong> tags around your text and so on..

link|improve this answer
but how the frame have the text area, I checked their source code using firebugs, it seems they don't have textarea on the frame. – Tattat Dec 2 '11 at 17:33
I think it catches the keyboard events without any text area. The keypressed events are processed directly. However the code is compressed so hard to see the truth. – jabal Dec 2 '11 at 17:35
yes, the code is compressed, that's why I ask it on stackoverflow XD. but I don't think he/she works the keypressed events, because I see the cursor is blinking – Tattat Dec 2 '11 at 17:45
You can easily unpack the richtext_compressed.js that can be downloaded from the site with strictly-software.com/unpacker – jabal Dec 2 '11 at 17:55
Sure its keypress event: h.addEventListener("keypress", geckoKeyPress, true) – jabal Dec 2 '11 at 17:58
show 2 more comments
feedback

Use http://www.tinymce.com/ It is the best rich editor out there. Works great with any browser and it has many many options. It's very easy to use. Just look at the examples and docs. It's included with many popular blogs and CMS.

link|improve this answer
I know there is rich text editor out there, but I would like to implement my own one. So, just wanna to know the idea behind. – Tattat Dec 2 '11 at 17:31
He did not ask for other editors, he wants to know how does it work! – jabal Dec 2 '11 at 17:38
Oh, Ok. You must create editor's DOM dynamically. Make it works right with every browser is not trivial. I recommend you check at source code of some libraries, so you can make an idea. – gorlok Dec 2 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

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