Skip to content

Instantly share code, notes, and snippets.

@irae
Created March 31, 2010 23:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save irae/351062 to your computer and use it in GitHub Desktop.
Save irae/351062 to your computer and use it in GitHub Desktop.
// jQuery('#myId').scrollToMe();
jQuery.fn.scrollToMe = function(speed,callFunc) {
var that = this;
setTimeout(function() {
var targetOffset = that.offset().top-10;
$('html,body').eq(0).animate({scrollTop: targetOffset}, speed || 500, callFunc);
},500);
return this;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment