I have a landing page with links. How can I direct user to a section of a different page?
Main Page:
Sushi
My Solutions:
$("body").scrollspy({ target: ".target", offset: fix_header_height }); $(".target").click(function() { $("body").animate( { scrollTop: $($(this).attr("href")).offset().top - fix_header_height }, 500 ); return; });