$(document).ready(function() { $(".download-btn").click(function(e) { e.preventDefault(); var target = $(this).data("target"); var offset = 50; $("html, body").animate({ scrollTop: $(target).offset().top - offset, }, 800 ); }); });