(Meaning an elements left-value): What's the easiest way to move an element - e.g. 10px to the left (from its current position)?
Here is a quick example using jQuery:
$("#el").css({
left: $("#el").position().left - 10 + "px"
});
Note: the element that you want to move must either be positioned absolutely or relatively.