vote up 0 vote down star

Is there a function, or plugin, that tells me if more than 50% of a <div> block is currently being displayed?

I know there are things like $.offset() but I didn't want to do it by hand every time the user resizes it's window or scroll to a region.

Something on the lines of :visible, but that is currently visible.

Thanks!

flag

What kind of content is within the div? – karim79 Jun 19 at 19:26
The div contains only a <p> with plain text. – Edu Felipe Jun 19 at 19:30

1 Answer

vote up 1 vote down check

If your definition of "visible" is "more than 50% of the div on the screen", you're going to need to create a function of your own to calculate this.

You will need to define exactly what portion of the <div> you are calculating - i.e. margins, borders, elements hidden in scrollTop/scrollLeft, etc...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.