The only solution I\'ve found is to set the max and min height or width with the current value.
Example:
foo.resizable({ maxHeight: foo.height(),
A very simple solution:
$( ".selector" ).resizable({ grid: [1, 10000] }); // horizontal $( ".selector" ).resizable({ grid: [10000, 1] }); // vertical
This works for draggable() as well. Example: http://jsfiddle.net/xCepm/