Skip to content

Instantly share code, notes, and snippets.

@ashsaraga
Last active January 31, 2018 23:36
Show Gist options
  • Save ashsaraga/7e03725fbf0a2ad30287aecb927aa013 to your computer and use it in GitHub Desktop.
Save ashsaraga/7e03725fbf0a2ad30287aecb927aa013 to your computer and use it in GitHub Desktop.
function pinElement() {
var trigger = $('.trigger').offset().top;
$(window).scroll(function(){
if($(window).scrollTop() > (trigger)){
// function after trigger
} else {
// function before trigger
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment