vote up 1 vote down star
1

I'm using the contentEditable attribute on a DIV element in Firefox 3.03. Setting it to true allows me to edit the text content of the DIV, as expected.

Then, when I set contentEditable to "false", the div is no longer editable, also as expected.

However the flashing caret (text input cursor) remains visible even though the text is no longer editable. The caret is now also visible when I click on most other text in the same page, even in normal text paragraphs.

Has anyone seen this before? Is there any way to force the caret hidden?

(When I either resize the browser or click within another application, and come back, the caret magically disappears.)

flag

1 Answer

vote up 4 vote down check

I've dealt with this and my workaround is clearing the selection when I disable contentEditable:

if ($.browser.mozilla) { // replace with browser detection of your choice
  window.getSelection().removeAllRanges();
}

I am actually removing the "contenteditable" attribute for browsers other than IE, rather than setting it to false:

if ($.browser.msie) {
  element.contentEditable = false;
}
else {
  $(element).removeAttr( 'contenteditable' );
}

The browsers manage the contentEditable attribute inconsistently and my testing revealed that this worked better overall. I don't remember if this contributed to fixing the caret problem, but I'm throwing it in here just in case.

link|flag
Thanks for the tips. removeAllRanges() at least seems to hide the caret after setting conteEditable to false, bit better. However it comes back again if I click elsewhere on text. removing the attribute itself didn't seem to ahve any effect. Might be something Mozilla can fix in a new release. – Ash Oct 19 '08 at 23:28
A quick search through bugzilla reveals that there is a known bug where setting contentEditable=false triggers caret mode for the whole page. My removing the attribute is a likely reason for why I don't see this bug. See: bugzilla.mozilla.org/show_bug.cgi?id=433692/… – Borgar Oct 20 '08 at 0:08

Your Answer

Get an OpenID
or

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