Skip to main content Accessibility Feedback

Browser design mode

Austin Byrd shared an awesome browser trick on Twitter that I was previously unaware of: design mode.

When you switch on design mode, every piece of content in the browser can be edited by clicking on it.

To turn it on, open up the console tab of your browser’s developer tools and run:

document.designMode = 'on';

It works in all modern browsers. Thanks Austin!