We had the same issue for ios 9, we are using the following, till there is a fix!
<script>
window.addEventListener('native.keyboardshow', keyboardShowHandler);
function keyboardShowHandler(e) {
setTimeout(function () {
$('html, body').animate({ scrollTop: 0 }, 1000);
}, 0);
}
</script>