Well, I think I found the source of the problem, but don't know
exactly what to do with it.
There is a function in JQ named "curCSS", it used to retrieve actual
element style value.
To get properties like "right" or "left" in mozilla it uses  the
following statement : defaultView.getComputedStyle( elem,
null ).getPropertyValue("right").
For some reason in some cases it returns wrong value. In my case the
inline style for the element is "-300px" (I get it using
elem.style.right property) and the above statement returns "400px".
So may be this is actually a Mozilla bug and not JQuery?
How can we contact Mozilla or JQuery people?

Reply via email to