451 260 160
 

 Jelenia Góra ul. Wolności 184/A1

FIRMA HANDLOWO USŁUGOWA MARCIN POLOWCZYK ZWIERZAK ZOO ART

ul. Wolności 184/A1, 58-500 Jelenia Góra
NIP: 6112171141
Koszyk
Przewijanie do góry
(function waitForSelects() { const allSelects = Array.from(document.querySelectorAll('select')).filter(s => s.name.startsWith('attribute_pa_elementy-szkolenia') && s.offsetParent !== null ); if (allSelects.length === 0) { console.log('Brak widocznych selectów, próbuję ponownie za 500ms'); setTimeout(waitForSelects, 500); return; } console.log('Widoczne selecty:', allSelects.map(s => s.name)); function updateOptions() { const selectedValues = allSelects.map(s => s.value).filter(v => v !== ''); console.log('Wybrane wartości:', selectedValues); allSelects.forEach(select => { const currentValue = select.value; Array.from(select.options).forEach(option => { if (option.value === currentValue || !selectedValues.includes(option.value)) { option.disabled = false; option.style.display = ''; } else { option.disabled = true; option.style.display = 'none'; } }); }); } allSelects.forEach(select => { select.addEventListener('change', () => { console.log(`Zmieniono: ${select.name}, nowa wartość: ${select.value}`); updateOptions(); }); }); updateOptions(); })();