document.addEventListener('DOMContentLoaded', () => { // Select all country links const countryLinks = document.querySelectorAll('.country-setter'); countryLinks.forEach(link => { link.addEventListener('click', (event) => { const isoCode = link.getAttribute('data-iso'); const currencyCode = link.getAttribute('data-cu'); setCookie('LAND', isoCode, 365); // Set the LAND cookie setCookie('VALUTA', currencyCode, 365); // Set the VALUTA cookie const data = new URLSearchParams(); data.append('funk', 'set_country_session_data'); data.append('ic', isoCode); data.append('cc', currencyCode); const response = fetch('/cgi-bin/ibutik/API.fcgi', { method: 'POST', body: data }); }); }); // Select the parent