$(function() {
var size = {
width:0,
height:0
};
$( "#resize" ).resizable({
resize: function( event, ui ) {
if(size.width != 0 && size.height != 0) {
if(ui.size.width < size.width || ui.size.height < size.height) {
console.log(1);
} else {
console.log(2);
}
}
size.width = ui.size.width;
size.height = ui.size.height;
}
});
});