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

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -