Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.60 KB | None | 0 0
  1. <html>
  2. <body>
  3. <script>
  4.     var getParams = window.location.search; // Should look like "?utm_sasi=hummus&utm_R2=D2" etc...
  5.     var iframe = document.createElement('iframe');
  6.     iframe.src = 'https://my.site.com/iframe' + getParams;
  7.     document.body.appendChild(iframe);
  8. </script>
  9. </body>
  10. </html>
  11.  
  12. // Body of iframe, which should be returned from https://my.site.com/iframe
  13. <html>
  14. <body>
  15. <script>
  16.     var getParams = window.location.search;
  17.     var link = document.createElement('a);
  18.     link.href = 'https://my.site.com/nextPage' + getParams;
  19.     document.body.appendChild(link);
  20. </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement