mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
24 lines
695 B
HTML
24 lines
695 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Draggable Visual Test : Draggable option containment array</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">
|
|
$(function() {
|
|
$("#draggable").draggable({
|
|
containment: [50, 100, 400, 350]
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="draggable">
|
|
<p> Draggable </p>
|
|
</div>
|
|
</body>
|
|
</html>
|