const artistInput = document.querySelector('.input__text_artist');
const songInput = document.querySelector('.input__text_song');
....
form.addEventListener('input', function (event) {
if (artist.value.length === 0 || song.value.length === 0) {
console.log('Кнопка выключена');
}
else {
console.log('Кнопка включена');
}
});
artist и artistInput это разные вещи?
|