0.0.0 • Published 11 years ago

dom.position v0.0.0

Weekly downloads
98
License
MIT
Repository
github
Last release
11 years ago

dom.position

get the coordinates of the element relative to the document

examples

mouse coordinates inside of an element

var pos = require('dom.position');

div.addEventListener('mouseclick', function(ev) {
    var ppos = pos(ev.currentTarget);

    var x = ev.clientX - ppos.left;
    var y = ev.clientY - ppos.top;

    // coordinates {x,y} are relative to the click container
});