Possible Duplicate:
Retrieve -moz-transform:rotate value using jQuery
Firefox 15 - Chrome:
$('#img2').css('transform');
return => "rotate(90deg)"
Firefox 16
$('#img2').css('transform');
return => matrix(0, 1, -1, 0, 0, 0);
Any thoughts on how to extract the rotate value in Firefox 16? What exactly is matrix?
In Firebq I receive:
element.style {
height: auto;
transform: rotate(90deg);
width: auto;
}