要素1
<script>
$(function(){
$('button').click(function(){
$('.scrtop02 div').scrollTop(100);
});
});
</script>
<style>
.scrtop02 div,.scrtop02 p {margin:10px;padding:10px;}
.scrtop02 div {border:solid 1px;height: 100px;overflow: auto;}
.scrtop02 p {background:red;width:100px;height: 300px;}
</style>
<div class="scrtop02">
<div><p>要素1</p></div>
</div>
<button>button</button>
ボタンを押すと指定した位置(100px)まで移動(スクロール)。