Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7626847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:22:52+00:00 2026-05-31T05:22:52+00:00

I want to re-link everything in a specific page through a XMLHTTPRequest to a

  • 0

I want to “re-link” everything in a specific page through a XMLHTTPRequest to a local network domain. That would lead me to GM_xmlhttpRequest in GreaseMonkey/NinjaKit except that I want to run it when the link is clicked, not when the userscript actually runs…

So I have something like:

links = document.getElementsByTagName('a');
for (i = 0; i < links.length; i++) {
    oldhref = links[i].getAttribute('href');
    links[i].setAttribute('href', 'javascript:loadLink(' + oldhref + ')');
}

I understand I can either use unsafeWindow or add a script element to document to inject loadLink function.
But how can I use GM_xmlhttpRequest in loadLink?

I’ve looked at 0.7.20080121.0 Compatibility page but I’m not sure if that is for what I need…

I’ve also considered adding an iframe to the page and the modified links would load inside the iframe (triggering the userscript again), but I’d prefer a cleaner solution…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T05:22:53+00:00Added an answer on May 31, 2026 at 5:22 am

    You almost never need to use GM functions inside the page context, and from the code posted so far, you don’t need unsafeWindow in this case either.

    Also, it is not necessary to rewrite the href for what is posted so far.

    Something like this will accomplish what you want:

    var links = document.getElementsByTagName ('a');
    
    for (var J = 0, len = links.length;  J < len;  ++J) {
        links[J].addEventListener ("click", myLoadLink,   false);
    }
    
    function myLoadLink (zEvent) {
        zEvent.preventDefault();
        zEvent.stopPropagation();
    
        var targetHref = zEvent.currentTarget.getAttribute ('href');
    
        GM_xmlhttpRequest ( {
            //wtv
        } );
    
        return false;
    }
    

    Or with jQuery:

    $("a").click (myLoadLink);
    
    function myLoadLink () {
    
        var targetHref = $(this).attr ('href');
    
        GM_xmlhttpRequest ( {
            //wtv
        } );
    
        return false;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to link to bookmark on a page (mysite.com/mypage.htm#bookmark) AND visually highlight the
I want to link to a page which contains multiple support topics. When the
I want to link to a section of a page using a bookmark site.com/Page.htm#Bookmark)
I have several sites that I want to link back to the main site
Our Client requires that we supply Widgits for their site. They want to link
I want to make a link call a Javascript function through the onclick event
I just want to create a button ion Android that will link to my
I have an app where I want to link an instance of a model
Ok, my web application is at C:\inetpub\wwwroot\website The files I want to link to
I basically want to use link_to to link to the index method of a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.