Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
const urlParams = new URLSearchParams(window.location.search); const utmSource = urlParams.get(''); const terminBuchenButtons = document.querySelectorAll('.button'); terminBuchenButtons.forEach(button => { button.href += `?${utmSource}`; });
Gutes Video
const urlParams = new URLSearchParams(window.location.search);
const utmSource = urlParams.get('');
const terminBuchenButtons = document.querySelectorAll('.button');
terminBuchenButtons.forEach(button => {
button.href += `?${utmSource}`;
});
Gutes Video