var timerID;
window.onfocus = function() {
clearTimeout(timerID);
timerID = setTimeout(function() {document.getElementById("input").focus();},100);
}
document.getElementById("input").onfocus = function() {
console.log("Сработал обработчик фокуса на поле");
}