jquery-ui/tests/visual/draggable/default.html
2009-01-24 04:31:59 +00:00

21 lines
573 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Draggable Visual Test : Default</title>
<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">
$(function() {
$("#draggable").draggable();
});
</script>
</head>
<body>
<div id="draggable">Draggable</div>
</body>
</html>