Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- LANDING PAGE PIXEL
- <script>
- window.addEventListener('load', function () {
- var myjamesparams = (new URL(document.location)).searchParams;
- if (myjamesparams.get('e')!=null) {
- myjameschangeValue(document.querySelector('[type="email"]'),myjamesparams.get('e'));
- }
- if (myjamesparams.get('t')!=null) {
- localStorage.setItem('jamest', myjamesparams.get('t'));
- }
- });
- function myjameschangeValue(input,value){
- var nativeInputValueSetter = Object.getOwnPropertyDescriptor(
- window.HTMLInputElement.prototype,
- "value"
- ).set;
- nativeInputValueSetter.call(input, value);
- var inputEvent = new Event("input", { bubbles: true });
- input.dispatchEvent(inputEvent);
- }
- </script>
- THANK YOU PAGE PIXEL
- <script>
- var destination = 'https://warriorplus.com/o2/a/s6v6cp/0';
- if (localStorage.jamest) {
- destination += '/'+localStorage.jamest;
- } else {
- destination += '/notrackingset';
- }
- window.location.replace(destination);
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement