Draggable (and Resizable) <div> using jQuery

Resources for a tutorial by Benedict Lewis.

HTML

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

CSS

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

JavaScript

$('.child').resizable({handles: 'n,w'});