Enquiries


import { useEffect } from "react";

export function UTMInjector() {
  useEffect(() => {
    const form = document.querySelector("form");
    const utmInput = form?.querySelector('input[name="utm_id"]');
    if (!form || !utmInput) return;

    const utmKeys = ["utm_source", "utm_medium", "utm_campaign", "utm_term", "utm_content"];
    const urlParams = new URLSearchParams(window.location.search);

    // Save to localStorage
    utmKeys.forEach(key => {
      const value = urlParams.get(key);
      if (value) localStorage.setItem(key, value);
    });

    // Inject right before submit
    form.addEventListener("submit", () => {
      const utmParts = utmKeys
        .map(key => {
          const val = localStorage.getItem(key);
          return val ? `${key}=${val}` : null;
        })
        .filter(Boolean);
      utmInput.value = utmParts.join("&");
      console.log("📤 UTM ID submitted:", utmInput.value);
    });
  }, []);

  return null;
}

How will I recieve my digital content ?

Post-editing customer satisfaction checks will be completed. Upon approval, your order will be shipped on a custom engraved USB 3.0 stick, at no extra cost

Smaller or fast turnaround orders will be delivered via online file transfer services. These will be temporarily available for a maximum of 2 weeks, or until they have been downloaded. Large file sizes, for example large volume videos, will likely be shipped on a USB

Let's Discuss It.

© CHAZMEDIAUK, 2025. All Rights Reserved.
All content, including Photographs, Videos and Intellectual Property,
Is the property of CHAZ and is protected under UK copyright law.

Unauthorised use, reproduction, or distribution is strictly prohibited.

© CHAZMEDIAUK, 2025. All Rights Reserved.
All content, including Photographs, Videos and Intellectual Property,
Is the property of CHAZ and is protected under UK copyright law.

Unauthorised use, reproduction, or distribution is strictly prohibited.