The HTMLElement.contentEditable
property is used to indicate whether or not the element is editable. This enumerated attribute can have the following values:
"true"
indicates that the element is contenteditable."false"
indicates that the element cannot be edited."inherit"
indicates that the element inherits its parent's editable status.You can use the HTMLElement.isContentEditable
property to test the computed Boolean
value of this property.
Note: In Internet Explorer contenteditable cannot be applied to the TABLE, COL, COLGROUP, TBODY, TD, TFOOT, TH, THEAD, and TR elements directly. A content editable SPAN, or DIV element can be placed inside the individual table cells.
editable = element.contentEditable element.contentEditable = "true"
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'contenteditable' in that specification. | Living Standard | Initial definition |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | 3 | 5.5 | 9 | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | 4 | Yes | Yes | ? |
HTMLElement.isContentEditable
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/contentEditable