Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 478 Bytes

make-the-browser-editable-with-design-mode.md

File metadata and controls

15 lines (11 loc) · 478 Bytes

Make The Browser Editable With Design Mode

Modern browsers support a Web API called Design Mode. When you turn on Design Mode, you are able to edit the text on the web page like you would do in Word or Dreamweaver. This is a great way to experiment with copy.

By default it is "off", but you can turn it on from your browser's devtools console.

> document.designMode = "on"
"on"

source