Guest User

Untitled

a guest
Jan 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $( document ).ready( function() {
  2.  
  3. //Scroll anchors
  4. $('a[href^="#"]').click(function() {
  5. elementClick = $(this).attr("href");
  6. destination = $(elementClick).offset().top;
  7. if ($.browser.safari) {
  8. $('body').animate( { scrollTop: destination }, 1000 );
  9. } else {
  10. $('html').animate( { scrollTop: destination }, 1000 )
  11. }
  12. return false;
  13. });
  14.  
  15. } );
Add Comment
Please, Sign In to add comment