I would like to know how to make resizable image with jQuery on the fly. It's something like an image has resizable border and we can drag that border with mouse in order to become smaller or bigger of the image. When I use resizable, only background continent become bigger but image is still the same size. Thanks in advance for your precious replies!
A:
Are you applying resizable to the div container or the actual image?
as in:
$('img').resizable();
Sorry not sure about the syntax.
Dmitri Farkov
2009-05-20 14:53:54
+1
A:
With image html like this:
<img id="resizebleImage" src="images/mypic.gif" width="200px"
height="135px">
jquery
$(function(){
$("#resizebleImage").resizable();
});
TStamper
2009-05-20 15:02:32
A:
in ie the image is centered in the containing element, is it possible to keep the left top corner in one position
wah
2009-09-07 05:07:07