Sortable

Makes a list of items mouse sortable. Options will vary by framework. The following example assumes jQuery as the selected framework.

Example Usage

One
Two
Three
Four
Five

Source Code

<style>
	.box
	{
		border:1px solid #ccc;
		width:400px;
		height:40px;
		background-color:#eee;
		margin:10px;
		padding:10px;
	}
	.resize
	{
		background-color:#ffffcc !important;
	}
	.resize_border
	{
		border:1px solid #ff0000;
	}
</style>
 
<div behavior="sortable">
	<div class="box"> 
		One
	</div>
	<div class="box"> 
		Two
	</div>
	<div class="box"> 
		Three
	</div>
	<div class="box"> 
		Four
	</div>
	<div class="box"> 
		Five
	</div>
</div>