I am using html5/javascript/jQuery/css for mobile app development. I have multiple textareas in the app. When I click on that to input, keyboard popup (android tab). But the tex
To complete the answer, if you want to animate the scroll replace:
$htmlOrBody.scrollTop(textareaTop - scrollTopPadding);
by
var timing = 250; $htmlOrBody.animate({ scrollTop: textareaTop - scrollTopPadding }, timing);