document.addEventListener('DOMContentLoaded', function() {
var phoneField = document.getElementById('your_phone_field_id'); // Replace 'your_phone_field_id' with the actual ID of your phone field
phoneField.addEventListener('input', function() {
// Remove any non-digit characters from the input
this.value = this.value.replace(/\D/g, '');
// Check if the value is now a valid phone number with exactly 10 digits
if (this.value.length !== 10) {
// Display an error message or take appropriate action
alert('יש להזין מספר טלפון חוקי שמכיל עשר ספרות בלבד');
}
});
});