09
Jul
Jul
On Blogstorm there’s an article that describes a simple method that allows you to edit any website live in your browser. You just have to type the following code in your address bar:
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0The method works in all modern browsers (Internet Explorer 6 also). The edit mode can be disabled by typing this code in the adress bar (doesn’t work in Firefox):
javascript:document.body.contentEditable='false'; document.designMode='on'; void 0

