Javascript trick to make web pages editable in your browser
Programming No Comments »Just paste the following code into the address bar of your browser on a webpage that you’d like to edit:
javascript:document.body.contentEditable=‘true’; document.designMode=‘on’; void 0
This will make the current page editable. This is good for spoofing information on a site that you want to share with others, like say affiliate revenues.
This works in both Internet Explorer & Firefox.
Recent Comments