<input type="text" id="i1">
<input type="text" id="i2">
const i1 = document.querySelector('#i1');
const i2 = document.querySelector('#i2');
i1.addEventListener('input', function (e) {
if (e.target.value) {
i2.setAttribute('disabled', true);
} else {
i2.removeAttribute('disabled');
}
});
i2.addEventListener('input', function (e) {
if (e.target.value) {
i1.setAttribute('disabled', true);
} else {
i1.removeAttribute('disabled');
}
});