Advertisement
briank

Kartra "?r_done=1" remover

Dec 6th, 2021 (edited)
881
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  * Remove Kartra's r_done=1 from custom-domain URLs in modern browsers.
  3.  * Paste in HEAD tracking section. Provided AS-IS. Use at your own risk.
  4.  */
  5. if (history.replaceState) {
  6. var ls = location.search, params = [], reset = false;
  7. ls && ls.substring(1).split('&').forEach(function (param) {
  8. if ('r_done=1' === param) reset = true; else params.push(param);
  9. });
  10. if (reset) history.replaceState(null, '', location.origin + ((location.pathname.length > 1) ? location.pathname : '') + (params.length ? ('?' + params.join('&')) : '') + location.hash);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement