תור קליק
– קובעים תור בקליק –
תור קליק
– קובעים תור בקליק –
תור קליק
– קובעים תור בקליק –
document.addEventListener(‘DOMContentLoaded’, function() {
var emailFields = [‘your-email’, ‘your-email1’, ‘your-email2’];
emailFields.forEach(function(fieldName) {
var inputs = document.querySelectorAll(‘input[name=”‘ + fieldName + ‘”]’);
inputs.forEach(function(input) {
input.style.pointerEvents = ‘none’;
input.style.backgroundColor = ‘#f0f0f0’;
input.style.color = ‘#555’;
});
});
});