Advertisement
jamescolin

Magic Funnel Revenue Sharing

Nov 8th, 2022
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. if (Math.random() >= 0.5) {
  3.   console.log('Switching the magic funnel to the second AID...');
  4.   setmylinks();
  5. } else {
  6.   console.log('Not switching the magic funnel, staying to the first AID...');
  7. }
  8.  
  9. function setmylinks() {
  10.   let myinput = document.querySelector('[data-tag="mymagicfunnel"]');
  11.   if ( myinput == null ) {
  12.     setTimeout(setmylinks, 1000);
  13.   } else {
  14.  
  15.   let myaction = 'https://office.builderall.com/us/office/create?aid=123456&tokenreg=pIz8GpaV0cZvGzmOLa5zRSXnUR2hXtlzW3mOPrNPbP8JnLTOWjG%2BCgVGqGx0BnA70eZYzIoKSVXwBBjOTzYdNtFt4qxvwxU07oIMtyA9SiFAUOeXSbILkqTLFdW91hqohELwnyAs2KW1cVtBNz08d1aCO3Rx4Ua0c1%2BtIQEWDUyVpoWjBP26O9asP9GsZwkVKsXCaPpBjQbqnm2iO78rDrwgdqBO%2FHhphdFGWpwfejlnERweLi9tzGBm&list_mb=1234567890&email_mb=john%40doe.com&redir=https://mysite.com/thankyou';
  16.  
  17.   document.querySelector('[data-tag="mymagicfunnel"] > div > form').setAttribute('action', myaction);
  18.   }
  19. }
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement