document.designMode
controls whether the entire document is editable. Valid values are "on"
and "off"
. According to the specification, this property is meant to default to "off"
. Firefox follows this standard. The earlier versions of Chrome and IE default to "inherit"
. Starting in Chrome 43, the default is "off
" and "inherit
" is no longer supported. In IE6-10, the value is capitalized.
var mode = document.designMode; document.designMode = "on"; document.designMode = "off";
Make an <iframe>
's document editable:
iframeNode.contentDocument.designMode = "on";
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'designMode' in that specification. | Living Standard | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | Yes | Yes | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | ? | ? | ? | ? | ? |
© 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/document/designMode