Re: Fixed a bug when displaying calendar on IE7
2007/06/15 16:54
Viewed 8176 times
Replies: 1/3

I Fixed the bug on my way, tested on IE7, IE6(Multiple IE), FF, and SAFARI, with those lines :

if (document.body.scrollLeft){br.x += document.body.scrollLeft;}
br.x += window.scrollX;
if (document.body.scrollTop){br.y += document.body.scrollTop;}
br.y += window.scrollY;

and it works.

Google