I want to scroll smoothly when I click the navbar, so they have an href
of #blahblah
for where to go.
My current code, which won't work, is as follows:
$(".menu").click(function() {
var href = $(this).attr('href');
$('html, body').animate({
scrollTop: $(href).offset().top
}, 2000);
});