views:

34

answers:

1

SUpoose i am in the middle of page length.

Is it possible to find , how much more distance in length or pixels from bottom.

Like when scroll bar hits the bottom then its 0 but if it 500px from the bottom then i need that 500px value.

Thanks

+2  A: 

It's not so precise but works:

var scrollPosition = window.pageYOffset;
var windowSize     = window.innerHeight;
var bodyHeight     = document.body.offsetHeight;

alert(Math.max(bodyHeight - (scrollPosition + windowSize), 0));
Crozin
I don't understand , how can i get the data for image with id img1.I don't want body
Mirage
This answered your question - you made no mention of images of ID's. Please re-phrase your question.
Sam