I have a few panels that I slide horizontally using the animate function that jQuery so generously provides.
The problem is that 100% of the clients that will be using this small app I am making use IE6. I am worried that because the panels contain a few elements on them, not too many but not few it will be very slow on IE6 and the rather poor-ish PCs that will be seeing this.
Now the question, should I animate scrollLeft to scroll the parent div or should I reposition the child div animating css left attribute?
Is there any performance gain by chosing one over the other? (I cannot test on the target PCs at the time being to be able to make an empirical decision.)
Thank you.