I am trying to achieve this (90 degree rotation), but it fails without errors. This image is within a TAG where it has already a toggle jque
This is the example to rotate image 90deg as following code bellow:
$(document).ready(function(){ $("img").click(function(){ $(this).rotate(90); }); });