I have several <p> elements inside a <div>. The <div> has overflow-y:auto; which is hiding some <p> elements from view unless you scroll down.
See http://jsfiddle.net/qnuxs/1/
How can i write a jQuery selector that only select <p> elements that are fully(not partially) visible and not hidden from view with overflow.
So from the jsfiddle example i provided the selector should give me the first 2 <p>'s (000 and 111) since they are the only tags fully in view.
Note: not all <p> tags necessary have the same height. Height can vary.