jQueryUI Selectables Test1

select first and last select die ersten drei

by juErik

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css">
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.min.js"></script>
<div class="demo">Move Me!!... Resize Me!!...</div>

CSS

.demo {
	width:150px;
	height:150px;
	padding:5px;
	background-color:#ff8811;
	position:absolute;
	top:150px;
	left:300px;
    cursor:move;
}

JavaScript

$('.demo')
		.draggable()
		.resizable();