Hi,
If you are using querySelectorAll then you need to use below code -
var all = document.querySelectorAll('.mobile');
Array.from({length: all.length}, (v, k) => k).forEach((index) => {
let element = all.item(index);
element
.addEventListener('input', restrictNumber);
});
function restrictNumber (e) {
var newValue = this.value.replace(new RegExp(/[^0-9\.]/g,'ig'), "");
this.value = newValue;
}