Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- if (Math.random() >= 0.5) {
- console.log('Switching the magic funnel to the second AID...');
- setmylinks();
- } else {
- console.log('Not switching the magic funnel, staying to the first AID...');
- }
- function setmylinks() {
- let myinput = document.querySelector('[data-tag="mymagicfunnel"]');
- if ( myinput == null ) {
- setTimeout(setmylinks, 1000);
- } else {
- 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';
- document.querySelector('[data-tag="mymagicfunnel"] > div > form').setAttribute('action', myaction);
- }
- }
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement