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

23 lines
698 B
HTML

<!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/ui.all.css" type="text/css">
<script type="text/javascript" src="../../../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../../ui/ui.draggable.js"></script>
<script type="text/javascript" src="../../../ui/ui.droppable.js"></script>
<script type="text/javascript">
$(function() {
$("body").children(":first").droppable();
});
</script>
</head>
<body>
<div><p>Droppable</p></div>
</body>
</html>