Whats the javascript code you put into your URL bar that allows you to automatically edit and change things right there on whatever page you're viewing? Do you guys know what I'm talking about?
Change the page you're viewing within your browser?
Collapse
X
-
I'm not sure there is an out-of-the-box working code out there, but you are looking for a "javascript inline editor" (not to be confused with "inline javascript")
All it does is look for specific elements in HTML to edit, such as p, a, img, and div, and just replaces with a form element. Then when you go for a .blur or .focus event it submits the form via AJAX call.
If you do find out-of-the-box solution, let me know -- I'd like to see how they did it. lol.
Hope this gets you started, kinda vague response I know
Last edited by crazyvipa; 08-25-2011, 04:32 AM.----
celebnuditywebsites AT gmail.com -
Code:javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
↑ see post ↑
13101Comment
-
What do you mean by making things editable? In all modern browsers (especially Chrome which I personally use) you can just right click anything and "Inspect element", and you can "change everything" and have a look. With Firefox, install the Firebug plugin. If that's what you mean.
Didddle.com — Torrent site for the love of sex, rock and the female body.*
* (No popups, no bullshit—just quality f'n stuff for free.)
Also running a rockin' 'n' rollin' web development company so
PM me for assistance creating the site of your dreams. ;)'Comment

Comment