Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 475 Bytes

edit-text-in-a-rendered-web-page.md

File metadata and controls

17 lines (10 loc) · 475 Bytes

Edit Text In A Rendered Web Page

Category: Web

You can edit text in a rendered web page which by changing the JavaScript DOM setting for designMode to "on".

For the web page you want to edit, load Developer Tools and open the JavaScript console.

In the JavaScript console type the following and hit enter:

document.designMode = "on";

Double click on text elements in the web page to change them.

To disable editing, set design mode to "off".