function scrollToSection() { jQuery(".go-to-section").on('click tap', function (event) { event.preventDefault(); var goToSection = jQuery(jQuery(this).data('go-to')); console.log(goToSection); if (goToSection.length) { jQuery('html,body').animate({ scrollTop: goToSection.offset().top - 100 }, 'slow'); } }); } //HTML <a href="#" class="btn btn-primary go-to-section" data-go-to=".section-class-where-you-go">
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter