Edit the text of any website
From Cut and paste one line of code to make any website editable:
javascript:document.body.contentEditable='true';
document.designMode='on'; void 0
What’s that you ask? That is an awesome small chunk of JavaScript that allows you to make the text of any website editable within the browser window. Just:
- Copy the code to the clipboard
- Browse to the site you want to edit
- Paste the code into the address bar and press return
- Edit the site’s text however you like
Let the pranking begin.
Leave a Comment