document.addEventListener('DOMContentLoaded', function () { const phoneFields = document.querySelectorAll('.champ-tel input'); phoneFields.forEach(function (field) { field.addEventListener('input', function () { this.value = this.value.replace(/[^0-9]/g, ''); }); }); });