i have to allow only number like these:
- 2 or 45 (from 0 to 99)
- 2.50 or 35.75 (2 digits before dot and 2 digits after)
Someone can help me? I could limit only int in this way:
$('#valueSconto').on('input', function () {
this.value = this.value.replace(/[^0-9]/g, '');
});