jquery-ui/tests/visual/droppable/droppable.html

34 lines
1.0 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2008-09-20 17:42:04 +00:00
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Droppable Visual Test : Default</title>
<link rel="stylesheet" href="../visual.css" type="text/css" />
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
2011-07-25 15:46:45 +00:00
<script type="text/javascript" src="../../../jquery-1.6.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>
2008-09-20 17:42:04 +00:00
<script type="text/javascript">
$(function() {
$("#draggable").draggable();
$("#droppable").droppable({
drop: function() {
alert("Dropped something");
}
});
2008-09-20 17:42:04 +00:00
});
</script>
</head>
<body>
<div id="draggable">
<p> Draggable </p>
</div>
<div id="droppable">
<p> Droppable </p>
</div>
2008-09-20 17:42:04 +00:00
</body>
</html>