I have a select tag:
Here is a workaround to this
Working demo
Code
$(function(){
//Select the last option in the range which you want to scroll to
var lastOption = $("select").find("option[value=5]")
//Store the selection state
var isSelected = lastOption.is(":selected");
lastOption.attr("selected", true)//This will scroll to the option
.attr("selected", isSelected); //Restore the selection state
});