i have a \"ul\" that contains lots of \"li\" (several hundred), the ul has a fixed hight of about 400px and the css property overflow:scroll, each li has the height of 40px
You can do like this:
$('html, body').animate({ scrollTop:$('#ulID li:eq(1)').offset().top }, 1000);
You need to adjust value to eq for specific li or you can even customize the selector.
eq
li