Skip to content

LeeviKopakkala/utm_source_extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

utm_source_extension

Universal JS script to find utm_source in website url, attach it to session and add as hidden field to all forms.

Features

  • Retain site visitor origin for the whole session duration.
  • Google Ads compatible
  • Customizable tag search

Usage

General usage

  1. Copy content of utm_source_inline.html.
  2. Paste it to end of site body tag.

Field utm_source is automatically attached to all forms within the page.

Webflow

  1. Copy content of utm_source_inline.html.
  2. Paste it to Project settings -> Custom Code -> Footer Code.

Wordpress

  1. Attach script to end of footer with:
add_action('wp_body_open', 'add_code_on_body_open');
function add_utm_source() {
    echo 'COPY CONTENT OF utm_source_inline.html';
}

Example:

<!--UTM_SOURCE CODE-->
<script>
const TAG = 'utm_source'

const params = new URLSearchParams(window.location.search);
const url = new URL(window.location.href)
const utm_source = sessionStorage.getItem(TAG)
if (!utm_source && params.get(TAG)) {
  sessionStorage.setItem(TAG, params.get(TAG))
  const session = sessionStorage.getItem(TAG)
  utm_source = params.get(TAG)
}
document.addEventListener("DOMContentLoaded", () => {
  const forms = document.forms
  for (let form of forms) {
    let input = document.createElement('input')
    input.setAttribute('name', TAG)
    input.setAttribute('value', utm_source)
    input.setAttribute('type', "hidden")
    form.appendChild(input)
  }
});
</script>
<!--UTM_SOURCE CODE END-->

Field utm_source is automatically attached to all forms within the page.

About

Universal utm_source script. Find all forms in a website and add utm_source tag as a hidden field. Compatible with Google Ads, Webflow, Wordpress

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published