Skip to content

Instantly share code, notes, and snippets.

@timlenardo
Last active July 2, 2019 02:39
Show Gist options
  • Save timlenardo/97765682eaae6318cbd174b5eb479d02 to your computer and use it in GitHub Desktop.
Save timlenardo/97765682eaae6318cbd174b5eb479d02 to your computer and use it in GitHub Desktop.
var xhr = new XMLHttpRequest();
var siteId = 'pillclub';
var split = window.location.href.split('?');
var params = split.length > 1 ? split[1] : "";
var url = split[0];
if (params.indexOf("utm_source=jf") != -1) {
xhr.open('GET', 'https://plugco.in/add_external_page_view?url=' + encodeURI(url) + '&site_id=' + encodeURI(siteId) + '&' + params);
xhr.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment