Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function(){
  2.  
  3. var anchors = document.getElementsByTagName("a");
  4. var anchorWOHash;
  5. var locationWOFragment;
  6.  
  7. for(var x=0; x<anchors.length; x++)
  8. {
  9. if(anchors[x].href.indexOf('#') === -1) continue;
  10.  
  11. anchorWOHash = anchors[x].href.split(/#/)[0];
  12. locationWOFragment = window.location.href.split(/#/)[0];
  13.  
  14. if(anchorWOHash === locationWOFragment)
  15. {
  16. $(anchors[x]).click(function(e) {
  17. e.preventDefault();
  18. scroll('#' + this.href.split(/#/)[1], 400);
  19. return false;
  20. });
  21. }
  22. }
  23.  
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement