img rotate plugin / reference to jquery object
using
https://code.google.com/archive/p/jquery-rotate/downloads
this works (rotates first image for some reason, even if there are many)
$('#draggable img').rotate(90)
this returns ObjectHTMLImegeElement
alert($('#draggable img').get(1) )
this returns : TypeError: $(...).get(...).rotate is not a function
$('#draggable img').get(1) .rotate(90)
?