Skip to content

Instantly share code, notes, and snippets.

@levantoan
Created October 30, 2015 09:35
Show Gist options
  • Save levantoan/85d6522c2693fabed865 to your computer and use it in GitHub Desktop.
Save levantoan/85d6522c2693fabed865 to your computer and use it in GitHub Desktop.
Scroll to element to active
$(window).scroll(function(){
var window_top = $(window).scrollTop();
var div_top = $(".number_counter").offset().top + 50; // Change class .number_counter
var window_height = $(window).height();
if (window_top + window_height >= div_top) {
//Code here
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment