Bride & Groom Expo Registration

–Select– Vendor / Exhibitor Couple / Visitor

Vendor / Exhibitor Information

Couple Information

const registrationType = document.getElementById(‘registrationType’); const vendorFields = document.getElementById(‘vendorFields’); const coupleFields = document.getElementById(‘coupleFields’); registrationType.addEventListener(‘change’, function() { if (this.value === ‘vendor’) { vendorFields.style.display = ‘block’; coupleFields.style.display = ‘none’; } else if (this.value === ‘couple’) { vendorFields.style.display = ‘none’; coupleFields.style.display = ‘block’; } else { vendorFields.style.display = ‘none’; coupleFields.style.display = ‘none’; } });