Draggable (and Resizable) <div> using jQuery

Resources for a tutorial by Benedict Lewis.

by jassi9911

HTML

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

CSS

.parent {
    position: relative;
    width: 800px;
    height: 500px;
    background: #000;
}
.child {
    position: absolute;
   right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    outline: 1px solid #ccc;
    background: #ccc;
}

JavaScript

$('.child').resizable({
    handles: 'n,w,s,e',minWidth: 200,
    maxWidth: 400
});