Create a Droppable object in JavaScript

Description

The following code shows how to create a Droppable object.

Example


<!--  w  ww.j  a va  2s .  c om-->

<html lang="en">
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script type="text/javascript">
$(function() {
$("#drag").draggable();
$("#target").droppable();
});
</script>
</head>
<body>
<div id="drag">drag</div>
<div id="target">target</div>


</body>
</html>

Click to view the demo

The code above generates the following result.

Create a Droppable object in JavaScript