saikumar-carbanio

Results 1 comments of saikumar-carbanio

> I faced the same issue, my solution is > $('.NumOnly').on('input', function (event) { > this.value = this.value.replace(/[^0-9]/g, ''); > }); > > $('.NumDotOnly').on('input', function (event) { > this.value =...