Skip to content

Instantly share code, notes, and snippets.

@rachmadideni
Created August 3, 2020 04:17
Show Gist options
  • Save rachmadideni/7beea3107358f36803f190f3472d2473 to your computer and use it in GitHub Desktop.
Save rachmadideni/7beea3107358f36803f190f3472d2473 to your computer and use it in GitHub Desktop.
if(/Android [4-6]/.test(window.navigator.appVersion)) {
window.addEventListener("resize", function() {
console.log('eventListener Added');
console.log(document.activeElement.tagName);
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
window.setTimeout(function() {
document.activeElement.scrollIntoViewIfNeeded();
},0);
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment