I\'ve been struggling with this issue for over a week now and would really appreciate any help I can get. I\'ll explain the issue as I understand it but please correct if I
A quick fix for me involved forcing the window to scroll back into position when the input looses focus:
$("input").on('blur',function(){
//set brief timeout to let window catch up
setTimout(function(){
//reposition at top left corner of screen
window.scrollTo(0,0);
},20);
});