Skip to content

Instantly share code, notes, and snippets.

@nemerovchenko
Forked from hunty/parse_utm.js
Created January 12, 2021 13:05
Show Gist options
  • Save nemerovchenko/fbcdf0d02bfcaa0e6ae7eaa851175a34 to your computer and use it in GitHub Desktop.
Save nemerovchenko/fbcdf0d02bfcaa0e6ae7eaa851175a34 to your computer and use it in GitHub Desktop.
Парсит UTM метки и подставляет в скрытые поля
window.onload = function() {
// Parse the URL
function getParameterByName(name) {
var name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)");
var results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
// Give the URL parameters variable names
var source = getParameterByName('utm_source');
var medium = getParameterByName('utm_medium');
var campaign = getParameterByName('utm_campaign');
// Put the variable names into the hidden fields in the form.
document.getElementById("property_utm_source").value = source;
document.getElementById("property_utm_medium").value = medium;
document.getElementById("property_utm_campaign").value = campaign;
//U Can use it with Expertsender Forms
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment