Not sure what causes the problem. One hack may be to trigger focus / blur on the input before the user clicks on the input itself. However, I could not create a working code snippet and am still experiencing a delay ...
// Not working: First thought $(selection).trigger('focus'); $(selection).trigger('blur'); // Not working: Second thought $(selection).trigger('click'); $(selection).trigger('click');
source share