I'll give that a try, since I primarily need to fix IE6, but then I'm still
puzzled why Safari is (and Firefox isn't) affected.
garyh wrote:
>
>
> I had this problem and managed a workaround by adding a line in the
> jqModal.css file:
>
> In the * html .jqmWindow selector add the line:
>
> left: expression(Math.round(50 * (document.documentElement.offsetWidth
> || document.body.clientWidth) / 100) + 'px');
>
> (Note: the value of 50 relates the percentage value of the 'left'
> property in the .jqmWindow selector)
>
> For clarity, the whole of the selector reads:
> * html .jqmWindow
> {
> position: absolute;
> top: expression((document.documentElement.scrollTop ||
> document.body.scrollTop) + Math.round(5 *
> (document.documentElement.offsetHeight ||
> document.body.clientHeight) / 100) + 'px');
> left: expression(Math.round(50 *
> (document.documentElement.offsetWidth || document.body.clientWidth) /
> 100) + 'px');
> }
>
>
> Hope the above makes sense.
>
> Gary
>
>
--
View this message in context:
http://www.nabble.com/jqDnR-%2B-jqModal----dragging-causes-jump-in-IE---Safari-tf4014648s15494.html#a11434499
Sent from the JQuery mailing list archive at Nabble.com.