blob: 22466e98acd697dd8c65480723b724b20125cb17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<!doctype html>
<html lang="en">
<head>
<title>Droppable Visual Test : Draggable option accept selector</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="droppable.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/ui.all.css" type="text/css">
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.draggable.js"></script>
<script type="text/javascript" src="../../../ui/jquery.ui.droppable.js"></script>
<script type="text/javascript">
$(function() {
$("#draggables *").draggable({
revert: true
});
$("#droppable").droppable({
accept: 'p',
drop: function(event, ui) {
$(this).append('<div>' + ui.draggable.text() + '</div>');
}
});
});
</script>
</head>
<body>
<div id="draggables">
<div>Draggable div</div>
<p>Draggable p</p>
<span>Draggable span</div>
</div>
<div id="droppable" class="ui-widget-content ui-corner-all">
<p class="ui-widget-header ui-corner-all"> Droppable </p>
</div>
</body>
</html>
|