Minor bug I'm trying to fix on Android devices accessing a site. Flow goes like this: User inputs text, list returns answers. User clicks li element, is scrolled to the next page (ng Anchorscroll). User is then at the top of next page, and can enter next input.
This is fine on iOS and web, but the keyboard is blocking on Android. I hope this doesn't violate SO terms, but here is a video of the problem with my web app (I won't upload the code). https://youtu.be/YwXRV_APMOQ
I have tried using conditions such as ‚ "if Androiddocument.activeElement.scrollIntoViewIfNeeded();
On resize $(input).focus();
, and even onclick="window.location.href="#destination"
But none are working. Looking for some sort of work around or help, thanks! :)