Files
kupshop/web/templates/x/static/js/wpj.cart.delivery.js
2025-08-02 16:30:27 +02:00

7 lines
186 B
JavaScript

const element = document.querySelector('#delivery-country');
if (element) {
element.addEventListener('change', () => {
window.location.href = '/zeme/' + element.value;
});
}