Skip to content

Instantly share code, notes, and snippets.

@victor-falcon
Last active October 1, 2015 13:28
Show Gist options
  • Save victor-falcon/2000612 to your computer and use it in GitHub Desktop.
Save victor-falcon/2000612 to your computer and use it in GitHub Desktop.
Animate Anchors
/*
* Animate all anchors links
* Add Jquery
*/
jQuery(document).ready(function($) {
$("a[href*=#]").click(function(event) {
if ($(this).attr('href').indexOf(document.URL) >= 0)
event.preventDefault();
searchFor = '#' + $(this).attr('href').split('#')[1];
var offset = $(searchFor).offset().top;
$('html, body').animate({scrollTop:offset}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment