Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to find a distance in pixels between html element and one of the browser (or window) sides (left or top) using jQuery?

share|improve this question

2 Answers

up vote 14 down vote accepted

You can use the offset function for that. It gives you the element's position relative to the (left,top) of the document:

var offset = $("#target").offset();
display("span is at " + offset.left + "," + offset.top + 
  " of document");

Live example On my browser, that example says that the span we've targeted is at 157,47 (left,top) of the document. This is because I've applied a big padding value to the body element, and used a span with a spacer above it and some text in front of it.

Here's a second example showing a paragraph at the absolute left,top of the document, showing 0,0 as its position (and also showing a span later on that's offset from both the left and top, 129,19 on my browser).

share|improve this answer
Oh, I should better read the documentation, thanks :) – Kai Jan 5 '11 at 8:11

For viewport sides (right and bottom) you can use this example:

$(document).ready(function() {
    var myLeft = $("#myId").offset().left;
    var myTop = $("#myId").offset().top;
    var myRight = myLeft + $("#myId").outerWidth();
    var myBottom = myTop + $("#myId").outerHeight();
    var viewportRight = $(window).width() + $(window).scrollLeft();
    var viewportBottom = $(window).height() + $(window).scrollTop();
    // horizontal distance = viewportRight - myRight
    // vertical distance = viewportBottom - myBottom
    alert("h: " + (viewportRight - myRight) + ", v: " + (viewportBottom - myBottom));
});

Demo on jsFiddle

Seems to have some problems in IE but I hope it'll be fixed in future versions of jQuery.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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