Skip to content

Instantly share code, notes, and snippets.

@tomfa
Created February 6, 2023 20:47
Show Gist options
  • Save tomfa/a3bf103237c6668a583d0d3fc08812e6 to your computer and use it in GitHub Desktop.
Save tomfa/a3bf103237c6668a583d0d3fc08812e6 to your computer and use it in GitHub Desktop.
A link, but a form that'll forward utm values
<html>
<form action="https://google.com/search" method="get">
<input type="hidden" name="utm_source" />
<input type="hidden" name="utm_medium" />
<input type="hidden" name="utm_campaign" />
<input type="hidden" name="utm_term" />
<input type="hidden" name="utm_content" />
<input type="submit" value="I pretend to be link" />
</form>
<script>
const urlParams = new URLSearchParams(window.location.search);
const utmParams = [
'utm_source',
'utm_medium',
'utm_campaign',
'utm_term',
'utm_content',
];
let paramValue, utmField;
utmParams.forEach(function (param) {
paramValue = urlParams.get(param);
utmField = document.querySelector("input[name='" + param + "']");
if (!utmField) {
return;
}
if (paramValue) {
utmField.removeAttribute('disabled');
utmField.value = paramValue.trim();
} else {
utmField.setAttribute('disabled', 'disabled');
}
});
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment