I had the same issue and turns out that it was an improper javascript writing.
In my case, I was executing $('#selector').focus() before $(document).ready which caused the issue, and when I placed the focus method into document ready, it was resolved.
So check you javascript.