I have a tag within a HTML5 document.

How can I detect the distance with JavaScript from the top-left corner of the HTML page to the top left corner of the canvas tag?

I need to be able to position dynamically generated html tags relative to the canvas.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

getBoundingClientRect() is your friend and is supported in recent-ish versions (Firefox 3, Safari 4, Chrome, Opera 9.5, IE 5) of all browsers. It will give you coordinates relative to the viewport rather than the page, however, so you need to add on the document's scroll amounts:

function getPageTopLeft(el) {
    var rect = el.getBoundingClientRect();
    var docEl = document.documentElement;
    return {
        left: rect.left + (window.pageXOffset || docEl.scrollLeft || 0),
        top: rect.top + (window.pageYOffset || docEl.scrollTop || 0)
    };
}
link|improve this answer
+1 for "is your friend" – awm Sep 30 '11 at 13:28
feedback

The easiest way is to use jQuery's offset

http://api.jquery.com/offset/

link|improve this answer
Easiest, but not accurate. Downvoted because (as noted on the link you give): "Note: jQuery does not support getting the offset coordinates of hidden elements or accounting for borders, margins, or padding set on the body element." – Phrogz Oct 1 '11 at 3:26
feedback

Your Answer

 
or
required, but never shown

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