Post

scrollTop 기능
- 해당태그 클릭시 부모요소를 브라우저 top:0으로 이동
$(function() {
        $("셀렉트").on("click",function(event){ 
                event.preventDefault();
                $('html,body').animate({scrollTop:$(this).patent().offset().top}, 500);
        });
});

▲ top