Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
document.addEventListener("DOMContentLoaded", function () {
document.getElementById("add-embroidery-button").addEventListener("click", function () {
document.getElementById("embroidery-dropdown").style.display = "block";
});
document.getElementById("embroidery-dropdown").addEventListener("change", function () {
var selectedValue = this.value;
var textarea = document.querySelector('.text-area');
if (selectedValue === "yes") {
textarea.style.display = "block";
} else {
textarea.style.display = "none";
}
});
});