MH
Size: a a a
MH
CM
CM
t
$(document).on("change keyup #first_payment click", "input[type='text']", function() {
if(this.value.length > 2 || Number(this.value) !== 100){
this.value = this.value.replace(/[^0-9]/g, "");
};
});
MH
t
DE
DE
t
В
$(document).on("change keyup input click", "#first_payment", function() {
if(this.value.length > 2 || Number(this.value) !== 100){
this.value = this.value.replace(/[^0-9]/g, "");
};
});
CM
DE
DE
MH
T
DE
DE