Предполагая, что у вас есть <div id="elem"></div>
на вашей странице, вы можете определить, находится ли она вне области просмотра, например:
var $elem = $('#elem'),
top = $elem.offset().top,
left = $elem.offset().left,
width = $elem.width(),
height = $elem.height();
if (left + width > $(window).width()) {
alert('Off page to the right');
}
if (top + height > $(window).height()) {
alert('Off page to the bottom');
}