I got the following code to work with .animate, but it won't with standard css properties, could anyone tell me why?
var xMove = 200;
$("#clickhere").click(function() {
$("#object").css({left: '+='+xMove});
});
Got a few similar working approaches now and learnt a bit about syntax along the way, good show people, Ta!