![](data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==)
אנא סובבו את הטלפון שלכם.
document.addEventListener("DOMContentLoaded", function () {
const hebrewPattern = /^[\u0590-\u05FF\s]*$/;
// Find all input fields inside Elementor forms
document.querySelectorAll('input[type="text"]').forEach(function (input) {
const label = input.closest('.elementor-field-group')?.querySelector('label');
// Apply only if the label contains "שם מלא"
if (label && label.textContent.trim() === "שם מלא") {
input.addEventListener('input', function () {
this.value = this.value.replace(/[^\u0590-\u05FF\s]/g, '');
});
}
});
});