Given an element with unknown margin-left, how to increase its margin-left at a number say 100px?
For example:
assuming the original margin-left is 100px
$("p").css({marginLeft: function(index, value) { return parseFloat(value) + 100; }});