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

23 lines
703 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.1.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() {
$("#droppable").droppable();
});
</script>
</head>
<body>
<div id="droppable">
<p> Droppable </p>
</div>
</body>
</html>