Viendo que has hecho algo aqui tienes una posible solucion
Nota: no uses jQuery cuando no lo necesitas para algo util
Código Javascript
:
Ver originalconst input1 = document.getElementById('input1');
const input2 = document.getElementById('input2');
input1.addEventListener('input', (event) => {
const { currentTarget } = event;
if(!currentTarget.value) return;
const minValue = Number(currentTarget.value) * 1000;
input2.setAttribute('min', minValue);
if(Number(input2.value) < minValue){
input2.value = minValue;
}
});