サイズ変更可能な要素が2つあり、グリッドを同期的に維持してサイズを変更する必要があります。これら 2 つのオプションは一緒には機能しないようです。何か案は?
デモ: http://jsfiddle.net/CbYtT/2/ (水平方向のサイズ変更を試してください)
$(function() {
$( "#this" ).resizable({
alsoResize: "#that",
grid: 100
});
$( "#that" ).resizable({
alsoResize: "#this",
grid: 100
});
});