// Function to get URL parameters function getURLParameter(name) { name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), results = regex.exec(location.search); return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); } // Append UTM parameters to Brevo form document.addEventListener("DOMContentLoaded", function () { // Extract UTM parameters from the URL var utmSource = getURLParameter('utm_source'); var utmMedium = getURLParameter('utm_medium'); var utmCampaign = getURLParameter('utm_campaign'); // Locate the Brevo form iframe var brevoIframe = document.querySelector('iframe[src*="brevo"]'); if (brevoIframe) { // Get the original form URL var formSrc = brevoIframe.src; // Append UTM parameters to the URL var newSrc = formSrc + (formSrc.includes('?') ? '&' : '?') + 'utm_source=' + encodeURIComponent(utmSource) + '&utm_medium=' + encodeURIComponent(utmMedium) + '&utm_campaign=' + encodeURIComponent(utmCampaign); // Update the iframe source brevoIframe.src = newSrc; } });
top of page
O_white_200px.png

Webinar

tir. 31. mai

|

Location is TBD

Tickets Are Not on Sale
See other events
Webinar
Webinar

Tid og sted

31. mai 2022, 09:00

Location is TBD

Om arrangementet

Use this space for Agenda if its your own event.

Dele dette arrangementet

bottom of page