From jQuery JavaScript Library
« Back to the jQuery UI Docs
Example:| Name | Type |
Makes the div draggable.
$(".block").draggable();
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://dev.jquery.com/view/tags/ui/1.5b2/ui.base.js"></script>
<script src="http://dev.jquery.com/view/tags/ui/1.5b2/ui.draggable.js"></script>
<script src="http://dev.jquery.com/view/tags/ui/1.5b2/ui.draggable.ext.js"></script>
<script>
$(document).ready(function(){
$(".block").draggable();
});
</script>
<style>
.block {
border: 2px solid #0090DF;
background-color: #68BFEF;
width: 150px;
height: 70px;
margin: 10px;
}
</style>
</head>
<body>
<div class="block"></div>
</body>
</html>