I have a question for the jQuery experts. I am trying to set a margin-left on a sliding div in a slider im making.
Is it faster for DOM Traversal and CSS rendering to do:
Insert inline css via .css('margin-left','-690px');
OR
Create a new css Class and insert it .addClass('marginLeftClass');
Does one have a potential advantage over another?