Skip to content

Instantly share code, notes, and snippets.

@tristen
Forked from samanpwbb/gist:5456139
Last active December 16, 2015 15:29
Show Gist options
  • Save tristen/5456161 to your computer and use it in GitHub Desktop.
Save tristen/5456161 to your computer and use it in GitHub Desktop.
var getTop = function(el) {
var id = el.attr('href');
return $(id).offset().top;
};
var getBottom = function(el) {
var id = el.attr('href');
return $(id).offset().top + $(id).height();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment