Is there a way to adjust CSS values using jQuery?
I am looking to specifically increase values like top and left, but my current attempt is not producing the desired outcome:
var left = 5;
$(.object).css("left" + 5);
The challenge I am facing is that I require the value to be an integer instead of a string such as "5px". I need it to be simply 5 so that numerical expressions can be applied to it.