I\'ve been trying to add a smooth scrolling function to my site for a while now but can\'t seem to get it to work.
Here is my HTML code relating to my navigation:<
$("#YOUR-BUTTON").on('click', function(e) { e.preventDefault(); $('html, body').animate({ scrollTop: $("#YOUR-TARGET").offset().top }, 300); });