I was trying to turn the aspect ratios on/off dynamically in JQueryUI resizable, however even after setting the option to false, it keeps maintaining the aspect ratio. Below is
This worked for me with no patching
$('#resizable') .resizable('option', 'aspectRatio', false) .data('uiResizable')._aspectRatio = false;
This part .data('uiResizable')._aspectRatio = false; comes to the rescue
.data('uiResizable')._aspectRatio = false;