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

25 lines
890 B
HTML
Raw Normal View History

2008-09-20 17:42:04 +00:00
<!doctype html>
<html lang="en">
<head>
<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">
2010-02-16 02:39:57 +00:00
<script type="text/javascript" src="../../../jquery-1.4.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() {
$("#droppable").droppable();
2008-09-20 17:42:04 +00:00
});
</script>
</head>
<body>
<div id="droppable">
<p> Droppable </p>
</div>
2008-09-20 17:42:04 +00:00
</body>
</html>