Scroll jquery function -
Scroll jquery function -
i want scroll smoothly when click navbar, have href
of #blahblah
go.
my current code, won't work, follows:
$(".menu").click(function() { var href = $(this).attr('href'); $('html, body').animate({ scrolltop: $(href).offset().top }, 2000); });
i think want this, you're selecting id:
scrolltop: $('#' + href).offset().top
jquery
Comments
Post a Comment