I have two resizable elements and I need them to resize Synchronously maintaining the grid. It seems that these two option do not work together. Any ideas?
Demo: http://jsfiddle.net/CbYtT/2/
(Try resizing horizontally)
$(function() {
$( "#this" ).resizable({
alsoResize: "#that",
grid: 100
});
$( "#that" ).resizable({
alsoResize: "#this",
grid: 100
});
});
It’s not pretty, but it works.
The working version of your JS fiddle
http://jsfiddle.net/Robodude/CbYtT/3/