Advertisement
towfiqi

Smooth Scroll all has links

May 6th, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. //Make all links that starts with hash smooth scroll to that div.
  2. jQuery(document).ready(function(){
  3. jQuery('a[href^="#"]').on('click', function(event) {
  4. event.preventDefault();
  5. var hash = this.hash;
  6. jQuery('html, body').animate({
  7. scrollTop: jQuery(hash).offset().top
  8. }, 800, function(){
  9. window.location.hash = hash;
  10. });
  11. });
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement