Sorry for the late response. This is fairly simple to do, you first need to find out what the position of the element is in the document. You can do that by getting its offset top value, then set the window scrollTop value to that. The scrolling is not on the window, but on the article.
var input = $('#myInput');
var scroll = input.offset().top
$('#scrollableArticle')[0].scrollTop = scroll;