mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
12 lines
431 B
Markdown
12 lines
431 B
Markdown
---
|
|
tags: JavaScript
|
|
title: document.designMode = "on";
|
|
---
|
|
|
|
I've [learned today](https://frontendmasters.com/blog/5-things-designers-can-do-with-javascript/) a really simple trick I wasn't aware of, to turn any webpage into something I can edit, I just need to enter:
|
|
|
|
```js
|
|
document.designMode = "on";
|
|
```
|
|
|
|
You can enter this directly in the console, or in the document directly. Very impressive when used on newspaper websites.
|