Last Updated: February 25, 2016
·
347
· legrandken

Javascript trick that makes content on a web page editable

Here is a nice Javascript trick. Copy and paste into web browser console and all content on web page is editable.

The Code

#!javascript

document.body.contentEditable='true'; document.designMode='on'; void 0