while this solution does not automatically scroll your field in the view, I found that it solves the problem of scrolling the page when the soft keyboard is active.
Answer thread here: fooobar.com/questions/376170 / ...
I found adding the following CSS at my maximum size: 768px media request made the native mobile browser respond to scrolling while the keyboard was active:
html {
overflow: auto;
}
body {
height:auto;
overflow: auto;
}
.scrollable {
position:inherit;
}
Hope this helps you, or someone like me who struggled to find a solution.
Hurrah!
: jQuery, - flexbox, , . script , Mobi (*, iOS Android, , ) , .
if (/Mobi/i.test(navigator.userAgent)) {
$('html').css({"overflow":"auto"});
$('body').css({"height":"auto"});
$('body').css({"overflow":"auto"});
$('.scrollable').css({"position":"inherit"});
}
, , , , - .