No sé si haya otra forma más sencilla.
Código Javascript
:
Ver originalvar flag = true;
$('.txtBusqueda').on('propertychange input', function (e) {
if (flag && $(this).val().length >= 3) {
setTimeout(function() {
alert('!');
flag = true;
}, 3000);
flag = false;
}
});
Saludos.