<input id="input-price" type="text" name="price">
$('#input-price').on('keyup', function() {
let value = $(this).val();
value = modifyValue(value);
$(this).val(value);
});
$('#input-price').on('input', function() {
let value = $(this).val();
value = modifyValue(value);
$(this).val(value);
});