Say a div has this applied to it:
-webkit-transform: translate3d(0px, -200px, 0px)
How could I retrieve those values with jQuery?
EDIT: This is wrong, ignore this.
I think if you do something like...
var styles = $('.myclass').css('-webkit-transform');
You would probably get the translate3d(0px, -200px, 0px) back.
translate3d(0px, -200px, 0px)
Maybe you could then parse that string? seems like a bit of a hack though.