I have a contentEditable
div.
Let's say the user clicks a button that inserts HTML into the editable area.
So, they click a button and the following is added to the innerHTML
of the contentEditable
div:
<div id="outside"><div id="inside"></div></div>
How do I automatically place the cursor (ie caret) IN the "inside" div? Worse. How can this work in IE and FF?
As far as i could understand from your question:
If it is contentEditable editable/typeable, you may try this:
FYI focus() doesn't work for non-form elements with contentEditable enabled in Google Chrome (I just tried it on a
<li>
inside a list that is editable and nothing happened in Chrome 10.0.648.82 beta on Win XP Pro SP3).For IE:
For Mozilla:
In theory the Mozilla version should also work in Webkit and Opera. In practice Webkit selects nothing and Opera selects the whole page. Sigh. This is still not well-supported territory.