Skip to content

Instantly share code, notes, and snippets.

@avhm
Created November 17, 2010 10:42
Show Gist options
  • Save avhm/703243 to your computer and use it in GitHub Desktop.
Save avhm/703243 to your computer and use it in GitHub Desktop.
jQuery onscreen / offscreen selector
$.expr[':'].onscreen = function(obj){
obj = jQuery(obj)
return obj.position().top < jQuery(window).height() && obj.position().top < jQuery(window).width();
};
$.expr[':'].offscreen = function(obj){
obj = jQuery(obj)
return obj.position().top > jQuery(window).height() && obj.position().top > jQuery(window).width();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment