Skip to content Skip to sidebar Skip to footer

How Do I Figure Out Why The Contenteditable Attribute Doesn't Work?

I seem to be having an issue with some of my css/javascript. I can't seem to be able to get contentEditable to work in my webapp. I was inspired by the answer to this post to try t

Solution 1:

Not sure offhand what style rules might screw things up, but to figure it out, first I'd try to inspect the page in Firebug, highlight your contenteditable element, then turn off styles rules for that element one selector at a time until it starts to work.


Solution 2:

I see you are using the jquery UI class "ui-draggable" on your contenteidtable div. This may be a problem as draggable silences editable content like textareas by default. It can be avoided if you make your div draggable from js and specify options:

$('div').draggable({
    cancel: 'div'
}

Here's more details on draggable options


Post a Comment for "How Do I Figure Out Why The Contenteditable Attribute Doesn't Work?"