Change the page you're viewing within your browser?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jayvis
    Confirmed User
    • Nov 2005
    • 5430

    #1

    Change the page you're viewing within your browser?

    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?
  • crazyvipa
    Confirmed User
    • Aug 2011
    • 73

    #2
    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

    Originally posted by Jayvis
    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?
    Last edited by crazyvipa; 08-25-2011, 04:32 AM.
    ----
    celebnuditywebsites AT gmail.com

    Comment

    • ottopottomouse
      She is ugly, bad luck.
      • Jan 2010
      • 13177

      #3
      Code:
      javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
      ↑ see post ↑
      13101

      Comment

      • didddle
        Registered User
        • Aug 2011
        • 17

        #4
        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

        Working...