Einfach erklärt: Url Parameter auslesen und weitergeben in webflow

Поделиться
HTML-код
  • Опубликовано: 16 янв 2025

Комментарии • 2

  • @eospaul
    @eospaul  Год назад +1

    const urlParams = new URLSearchParams(window.location.search);
    const utmSource = urlParams.get('');
    const terminBuchenButtons = document.querySelectorAll('.button');
    terminBuchenButtons.forEach(button => {
    button.href += `?${utmSource}`;
    });

  • @maxifischer97
    @maxifischer97 Год назад

    Gutes Video