Skip to content

Instantly share code, notes, and snippets.

@ray-peters
Created November 9, 2015 19:26
Show Gist options
  • Save ray-peters/c98ab4132e5ccdc2e6de to your computer and use it in GitHub Desktop.
Save ray-peters/c98ab4132e5ccdc2e6de to your computer and use it in GitHub Desktop.
$.fn.isOnScreen = function(){
var element = this.get( 0 ),
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