$('.header__field-search').on('input', function () {
if (!$(this).val().length) {
console.log('символов стало 0')
return;
}
console.log('символов стало больше чем 0')
})
$('.header__field-search').on('input', function () {
if (!$(this).val().length) {
console.log('символов стало 0')
} else {
console.log('символов стало больше чем 0')
}
})
$('.header__field-search').on('input', function () {
console.log(!$(this).val().length ? 'символов стало 0' : 'символов стало больше чем 0');
})
document.querySelector('.header__field-search').addEventListener('input', function() {
console.log(!this.value.length ? 'символов стало 0' : 'символов стало больше чем 0');
})