If my elements have multiple CSS tranform effects defined, like so:
transform: translate(400px, 40px) scale(1);
But I want to manipulate only one of them, such as changing its translate coordinates without affecting the current value of scale, can I do that with JQuery in a way that won't force me to parse the whole string?
Something similar can already be done with the "class" attribute - I can use hasClass, addClass, removeClass and JQuery will do the parsing for me.
Can I do something similar with the transform CSS pProperty?
.css('transform', '')