This may be a really stupid question, but I'm new to jQuery and am not understanding its css property like I thought I was,
It's blowing my mind that
-webkit-transform: rotate(30deg);
and
$("#cloud").css({
"top" : + 100 + "px",
"left" : "100px"});
work.
But that when I try and reuse that same idea here,
$("cloud").css({
"-webkit-transform" : "rotate(30deg)"});
It doesn't work. It seems as though I am using the exact same syntax.
I apologize for the stupid question.
~Austin