Draggable (and Resizable) <div> using jQuery

Resources for a tutorial by Benedict Lewis.

by bluey

HTML

<div class="child"></div>

CSS

.parent {
    position: relative;
    width: 800px;
    height: 500px;
    background: #000;
}
.child {
    position: fixed;
    bottom: 0;
    width: 200px;
    height: 50px;
    min-width: 100%;
    outline: 1px solid #ccc;
    background: #ccc;
}

JavaScript

$('.child').resizable({
    handles: 'n',
    minHeight: 50,
    maxHeight: 400
});