I think you are looking for an event resizestopthat fires at the end of a resize operation. You can use this event when initializing a mutable object:
$("#resizable_div").resizable({
stop: function(event, ui) {
alert('stopped resizing');
}
});
Or you can use bindan event handler to attach:
$("div").bind("resizestop", function(event, ui) {
alert('stopped resizing');
});
source
share