In jQuery, how do you make a mousedown() event trigger a resizeable box feature? A similar idea is cropping. You click on the picture and drag your mouse and it creates a box to the size of your choosing.
$("div").mousedown().resizeable();
or
$("div").mousedown(function(){ $("div").resizeable()}