Advertisement
tex2005

JS Auto-Scroll to div on different page

Feb 19th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // auto-scroll to div on different page
  2.     jQuery(document).ready(function(){
  3.  
  4.         var myDivID = location.hash.slice(1);
  5.         var div = '#' + myDivID
  6.  
  7.         jQuery('html, body').animate({
  8.             scrollTop: jQuery(div).offset().top
  9.         },1000);
  10.  
  11.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement