returns the position of an HTML element on the page
node | HTMLElement | an HTML element |
object | the position object |
var elem = document.getElementById("myDiv")
webix.html.offset(elem); //returns {y:100, x:500} - the top and left absolute position
Back to top