Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $j( document ).ready(function() {
  2.     $j('a[href^="#"]').on('click', function(event) {
  3.         var target = $j(this.getAttribute('href'));
  4.         if( target.length ) {
  5.             event.preventDefault();
  6.             $j('html, body').stop().animate({
  7.                 scrollTop: target.offset().top
  8.             }, 1000);
  9.         }
  10.     });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement