vote up 3 vote down star
2

It seems it allows you to edit the content of an element, but what is actually happening? When I enter javascript:document.body.contentEditable="true"; void 0 in the URL bar, it lets you move things around in a WYSIWYG editor in the browser window.

What's the use of this property?

flag

2 Answers

vote up 2 vote down check

This is usually used for rich text input. While regular form elements like <input type="text"/> don't provide real rich text editing options, elements with contentEditable set to true can. Most rich text editors (e.g. FCK Editor) available for the web are built using an <iframe/> with contentEditable set to true.

link|flag
vote up 0 vote down

contentEditable=true for elements make them editable. You can write/edit text in those elements as if they are a textarea or a text field.

link|flag

Your Answer

Get an OpenID
or

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