DEV Community

Discussion on: Things you may not know about Chrome DevTools

Collapse
 
tpina profile image
Tiago Pina

In the console, if you do document.designMode = "on" you can then edit the page in your browser as WYSIWYG.

Great to mock-up screenshots!

Collapse
 
mburszley profile image
Maximilian Burszley

A convenient bookmarklet for toggling it:

javascript:(function(){document.designMode=document.designMode==="on"?"off":"on";})();