Skip to content

Instantly share code, notes, and snippets.

@dinandmentink
Last active May 12, 2021 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dinandmentink/2269626bd173c5452c6510e036f91a57 to your computer and use it in GitHub Desktop.
Save dinandmentink/2269626bd173c5452c6510e036f91a57 to your computer and use it in GitHub Desktop.
Designmode
javascript: (function () {if (document.designMode == "on") {console.log("designMode is now off"); document.designMode = "off"; } else {console.log("designMode is now on"); document.designMode = "on"; } })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment