When I apply the resizable in the panel and drag down, the footer does not come with the panel.
Any way to solve this problem?
The code is as follows:
<div class="panel panel-default" id="resizable">
<div class="panel-body">A Basic Panel</div>
<div class="panel-footer">Panel Footer</div>
</div>
<script>
$( "#resizable" ).resizable({
handles: "s"
});
</script>
Example: jsfiddle