Skip to content

Instantly share code, notes, and snippets.

@codyogden
Created July 9, 2016 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codyogden/0355d64674039a181686a3a6d6480fe2 to your computer and use it in GitHub Desktop.
Save codyogden/0355d64674039a181686a3a6d6480fe2 to your computer and use it in GitHub Desktop.
/* jQuery plugin that tells if the element is in the viewport */
$.fn.inVP = function(){
var element = this.get(0);
var bounds = element.getBoundingClientRect();
return bounds.top < window.innerHeight && bounds.bottom > 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment