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

26 lines
911 B
HTML
Raw Normal View History

<!DOCTYPE html>
2009-01-24 12:07:26 +00:00
<html lang="en">
<head>
<meta charset="UTF-8" />
2009-01-24 12:07:26 +00:00
<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>
2009-01-24 12:07:26 +00:00
<script type="text/javascript">
$(function() {
$("body").children(":first").droppable();
2009-01-24 12:07:26 +00:00
});
</script>
</head>
<body>
<div><p>Droppable</p></div>
2009-01-24 12:07:26 +00:00
</body>
</html>