Advertisement
PtiTom

Scroll to specific SPAN given by URL

Jan 9th, 2013
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.18 KB | None | 0 0
  1. // Ensure scroll :
  2. var anchorSelector = 'span' + window.location.hash;
  3. var $element = $(anchorSelector);
  4. $('html, body').animate({
  5.     scrollTop: $element.offset().top
  6. }, 400);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement