mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
28 lines
806 B
HTML
28 lines
806 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Draggable Visual Test : Draggable option iframeFix true</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">
|
|
$(function() {
|
|
$("#draggable").draggable({
|
|
cursorAt: { top: -10, left: -10 },
|
|
iframeFix: true
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="draggable">
|
|
<p> Draggable </p>
|
|
</div>
|
|
<iframe id="iframe1"></iframe>
|
|
<iframe id="iframe2"></iframe>
|
|
<iframe id="iframe3"></iframe>
|
|
</body>
|
|
</html>
|