AT
Size: a a a
AT
СБ
$inputs.each(function() {
var isTyping = false;
$(this).on('input', function() {
if (isTyping) return;
console.log('Started typing');
isTyping = true;
})
$(this).on('blur', function() {
if (!isTyping) return
console.log('Stopped typing');
isTyping = false;
})
})
NM
NM
NM
СБ
NM
NM
YW
СБ
NM
NM
YW
c
СБ
СБ
c