I need to check with jQuery if a DIV element is not falling off-screen. The elements are visible and displayed according CSS attributes, but they could be intentionally plac
You could check the position of the div using $(div).position() and check if the left and top margin properties are less than 0 :
$(div).position()
if($(div).position().left < 0 && $(div).position().top < 0){ alert("off screen"); }