// Function/Plugin
$.fn.scrollTo = function () {
return this.each(function () {
$('html, body').animate(
{
scrollTop: $(this).offset().top,
},
1000
)
})
}
// Usage
$('#clickHandler').on('click', function () {
$('#section2').scrollTo()
})