vote up 1 vote down star
1

I can easily do execcommand on a contenteditable selection if using a button. However using any other element fails.

http://jsbin.com/atike/edit

Why is this and how can I make it work using a div element.

Thanks.

flag

Nice complete test case. – Crescent Fresh Sep 26 at 1:19
The WMD editor stackoverflow uses manages to maintain the selection in the textbox when clicking the toolbar buttons. The buttons are implemented as <li> elements not dissimilar to your example. It's not using contenteditable of course, but maintains the selection nonetheless. May be of interest, the WMD editor on github: github.com/derobins/wmd/blob/master/wmd.js – Crescent Fresh Sep 26 at 2:10
Thanks, but I'm trying to make a WYSIWYG editor rather than one in a text box. – Mark Sep 26 at 2:23
@Mark: you're a touch unimaginative aren't you? – Crescent Fresh Sep 26 at 2:49
@crescentfresh, a more appropriate description would be a 'noob', it would be helpful if you could describe more specifically what I'm supposed to get out of wmd.js. Thanks. – Mark Sep 26 at 3:43

2 Answers

vote up 0 vote down check

Most, if not all, of the WYSIWYG editors out there use an iframe element in order to not lose the selection. Another approach, although I haven't tried it, would be to store each selection made on that page after the mouseup event triggers.

Take a look at this page about Midas, Gecko's built-in rich text editor.

link|flag
Well it's definitely not all. Many editors, including google docs, do not use iframe. They must do it somehow. – Mark Sep 27 at 3:12
Google docs is using an iframe. yfrog.com/0ngoogledocsp – Ionut G. Stan Sep 27 at 10:31
Ahh yes you're right. – Mark Sep 29 at 0:54
I checked and realized one of the editors i was thinking of was just using buttons. – Mark Sep 29 at 1:08
vote up 0 vote down

Google Wave doesn't use iFrames, it is purely contenteditable divs, however good luck searching through all their compressed code..

link|flag

Your Answer

Get an OpenID
or

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