How to scroll to specific element using jQuery ?

Scroll to an element with jQuery

 

<script type=”text/javascript”>
jQuery(“.downarrow-go-down”).click(function() {
jQuery([document.documentElement, document.body]).animate({
scrollTop: jQuery(“#pricing”).offset().top
}, 2000);
});
</script>

Source:
https://stackoverflow.com/questions/6677035/scroll-to-an-element-with-jquery