OffsetLeft and OffsetTop issue in IE
dom, internet-explorer, javascript
Solution
in IE should help:
var obj = target.getBoundingClientRect();
var left = obj.left;
var top = obj.top;
Problem
Facing offsetLeft and offsetTop problem in IE while trying to create one tooltip which will create each time when we click on different events on calendar.. the following is the code which will work good for firefox but creating problem for IE. can tell me the solution for this.. ``` var ttip = __createElement("div","ttipbox","ttipbox"); //creating div target = document.getElementById("sDiv"+ndiv); //taking the object of event on click of it tooltip has to display. var x = target.offsetLeft ; var y = target.offsetTop - (currObj.childNodes[2].childNodes[0].childNodes[1].scrollTop + ttip.offsetHeight); ttip.style.top= y+15; ttip.style.left= x - 80; ttip.style.zIndex= "2000"; ``` Thanks in advance