I have heard of document.editMo de or something. Anyone care to elaborate or have links to tutorials/code examples?
How do I make a rich text editor? JavaScript
Collapse
X
-
-
Go to www.google.com.
Typeinto the address bar and hit enter.Code:javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
That's about all contentEditable is capable of. I assume that's what you're talking about as I've never heard of editMode!
A rich text editor - you should probably look into something that's been done before (http://www.freerichtexteditor.com/ provides a good script) and adapt it to your uses or use it as a learning tool. -
Comment