התחל להקליד על מנת לראות את המוצרים שאתה מחפש
דילוג לתוכן
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('select[name*="form_fields"]').forEach(function(sel) {
if (sel.options[0] && sel.options[0].value === '') {
sel.options[0].disabled = true;
}
});
});
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll("select[name*='form_fields']").forEach(function(sel) {
if (sel.options[0] && sel.options[0].value === "") {
sel.options[0].disabled = true;
}
});
});