I'm looking for a simple way to take an object and transform its rotateY property without it animating to its pre-set transition.
It would look a little like:
$(this).css("-webkit-transform","rotateY(180deg)");
$(this).css("-webkit-transition","10s");
then later in the code
$(this).css("-webkit-transform","rotateY(0)");
$(this).css("-webkit-transition","0");
But ...