I was hoping someone could shed light on IE 6 > image rotation code. I have tried using (http://code.google.com/p/jquery-rotate/) with no success. I’m able to rotate the image based on this post (Stackoverflow post) for FF, Chrome and Safari.
Any help or direction to rotate an image at 45deg angle would be appreciated. Thanks.
Example: My test for rotation
Use the excellent jQuery Rotate plugin. http://code.google.com/p/jqueryrotate/. It is supported by all major browsers
To rotate an image, All you need to do is
$('#myImage').rotate(30) //for a 30 degree rotationWhere
#myImageis the id of the element you want rotated.