Ваш код кажется хорошим, в вашем случае есть обходной путь, удалите jquery для этой строки.
Вы можете заменить
$("input:focus").blur()
на
document.activeElement && document.activeElement.blur()
// Test if there is a focused element, if yes remove the focus
или (с jQuery и Vanilla Js)
$(document.activeElement)[0].blur()
// or
$("input:focus")[0].blur()
Это то же самое поведение