with JQuery how would you change a CSS property like (in this example from left to right) I found that .css("left") could be used to retrieve the value, then I could write a function to set the .css("right"), but is there an easier (more compact) way to do it ?:
#set { left: 400px; bottom: -200px; }
to
#set { right: 400px; bottom: -200px; }
Thanks