Maandelijkse Deal: 25% Korting op onze speciale gerechten.
Help de ondernemer
Leveren verder
Goede support
document.addEventListener('DOMContentLoaded', function () {
// Get the _gl parameter from the current page URL
var glParam = new URLSearchParams(window.location.search).get('_gl');
// If _gl parameter exists, append it to the button links
if (glParam) {
// Select all buttons with the specified class
document.querySelectorAll('.jake-stylized-card--clickable').forEach(function(cta) {
var ctaUrl = new URL(cta.href); // Get the current URL of the button
// Append the _gl parameter to the CTA URL
ctaUrl.searchParams.set('_gl', glParam);
cta.href = ctaUrl.toString(); // Update the button link with the new URL
});
}
});