Hi,
I have written a custom scrollbar class in javascript for use in a "freezepane" structure. Performance in most browsers (including IE6!!!) is good. But in firefox 3.6 (beta 4 is fine) it is very jerky. When the scrollbar is moved, the onmousemove event calculates a position then sends the new position to a callback that is setting the style.left(or top) of 2 elements that are larger than their parent DIV containers that hide the overflowed content. The main content of the freezepane is an absolutely positioned DIV wrapping a large and complex table structure (for displaying market prices) - I have narrowed it down to the repeated setting of the style.left (or top) as being the performance bottleneck in FF.. is there any trick to improving this? I really don't understand how IE6 is outperforming FF on this one!
Thanks in advance Dazz