Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
document.addEventListener('DOMContentLoaded', function() {
var checkbox = document.querySelector('[name="properties[Engraving [ 2.00د.ك ]]"]'); //
var textField = document.querySelector('[name="properties[Name or Initials]"]'); //
document.addEventListener('DOMContentLoaded', function() {
var checkbox = document.querySelector('[name="properties[Engraving [ 2.00د.ك ]]"]');
var textField = document.querySelector('[name="properties[Name or Initials]"]');
if (textField) {
textField.style.display = 'none';
}
if (checkbox) {
checkbox.addEventListener('change', function() {
if (checkbox.checked) {
textField.style.display = 'block';
} else {
textField.style.display = 'none';
}
});
}
});
// Initially hide the text field
if (textField) {
textField.style.display = 'none';
}
// When the checkbox is clicked, toggle the text field visibility
if (checkbox) {
checkbox.addEventListener('change', function() {
if (checkbox.checked) {
textField.style.display = 'block'; // Show the text field
} else {
textField.style.display = 'none'; // Hide the text field
}
});
}
});