Pranesh Janarthanan

Results 2 comments of Pranesh Janarthanan

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 = this.value.replace(/[^0-9.]/g, ''); }); $(".AlphaDotOnly").on("input", function (event) {...

URL for stackoverflow could be Source Ans: https://stackoverflow.com/a/19111723/4425004 in previous post reference link is pointing to https://github.com/substance/substance/issues/url which caused the issue in loading. My QA for the Issue https://stackoverflow.com/q/54866373/4425004