Skip to content

Instantly share code, notes, and snippets.

@srinathweb
Created April 20, 2015 03:51
Show Gist options
  • Select an option

  • Save srinathweb/f30e08fa44504d639c31 to your computer and use it in GitHub Desktop.

Select an option

Save srinathweb/f30e08fa44504d639c31 to your computer and use it in GitHub Desktop.
scroling
$(window).on('scroll', function() {
var y_scroll_pos = window.pageYOffset;
var scroll_pos_test = 150; // set to whatever you want it to be
if(y_scroll_pos > scroll_pos_test) {
//do stuff
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment