Test Case Boilerplate
Fork this way...
HTML
<script src="http://code.jquery.com/ui/jquery-ui-git.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/jquery-ui-git.css">
<h1>My Page</h1>
<div id="sections">
<div class="section">
<h2>Section 1</h2>
This has some awesomeness.
</div>
<div class="section">
<h2>Section 2</h2>
And this has other awesomeness.
</div>
<div class="section">
<h2>Section 3</h2>
This is not awesome at all.
</div>
</div>
JavaScript
$("#sections").sortable({
forcePlaceholderSize: true
})