So, I have a Bootstrap mod that I created, and I'm trying to change it using jquery. My size changes horizontally, but if you try to resize it vertically, then the content inside the modality is not contained in the element I'm trying to resize.
I tried using the 'alsoResize' property in .resizable() and included all the divs in the modal, but this seems to cause other problems.
$('.modal-content').resizable({ alsoResize: ".modal-header, .modal-body, .modal-footer" });
Here is my example: https://jsfiddle.net/p7o2mkg4/
source share