Posts

Post not yet marked as solved
6 Replies
I had the same issue. It is one of the most annoying bug in Safari on iOS 13 for me.I solved this problem by manually blur the activeElement.With jQuery it looks like this:$('body').on('touchstart', () => { document.activeElement.blur();});I hope it will help you too.