Sign in | Join
Last post 11-19-2008 9:11 AM by NC01. 1 replies.
Sort Posts: Oldest to newest Newest to oldest
hi all,
i m using this following code.
x=window.event.x Not Working FireFox
work fine in IE6 but not work in FireFox
There is no window.event object in Firefox. Try:
x = (window.event) ? window.event.pageX : event.clientX; y = (window.event) ? window.event.pageY : event.clientY;
NC...