I'm using gridstack.js and need to maintain aspect ratio on-resize. I've tried many ways I found on google but nothing is working. Following is a link to JSFiddle I made to demonstrate the issue: jsFiddle
var options = {
aspectRatio: 16/9
};
$('.grid-stack').gridstack(options);
try this...
var options = {
resizable:{
aspectRatio: 16/9
}
};
$('.grid-stack').gridstack(options);