Skip to content

Instantly share code, notes, and snippets.

@xfenix
Created September 24, 2013 21:42
Show Gist options
  • Save xfenix/6691702 to your computer and use it in GitHub Desktop.
Save xfenix/6691702 to your computer and use it in GitHub Desktop.
$.fn.followTo = function (pos) {
var $this = this,
$window = $(window);
$window.scroll(function (e) {
if ($window.scrollTop() > pos) {
$this.css({
position: 'absolute',
top: pos
});
} else {
$this.css({
position: 'fixed',
top: 0
});
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment