← BACK TO INDEX

Application Security / January 30, 2007

1 MIN READ

How to edit any Webpage on the fly using JavaScript

OurPicks have an interesting piece of code snippet on their forums. A simple JavaScript code that lets you edit any webpage, static or dynamic on the fly Let us try this: Step # 1: Go to any website. Let us go to Slashdo…

OurPicks have an interesting piece of code snippet on their forums. A simple JavaScript code that lets you edit any webpage, static or dynamic on the fly Let us try this: Step # 1: Go to any website. Let us go to Slashdot.org Step # 2: Delete everything in the address bar Step # 3: Paste the following JavaScript code in the address bar
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
Step # 4: Enjoy Webpage edit of Slashdot on the fly