Hi,
I have four iframes in my main document. I am trying to get the mouse location in the main doc, it works in the areas where there are no iframe but I don't get it in my iframes.
Plz hlp..
Heres the javascript in my main doc
var IE = document.all?true:false
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;
var tempX = 0;
var tempY = 0;
Bookmarks