2008-09-20 17:42:04 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2009-02-07 14:27:27 +00:00
|
|
|
<title>Draggable Visual Test : Draggable option iframeFix true</title>
|
2009-02-07 14:09:07 +00:00
|
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
2010-02-16 01:38:23 +00:00
|
|
|
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
|
2010-01-27 12:29:43 +00:00
|
|
|
<script type="text/javascript" src="../../../jquery-1.4.1.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
2009-12-16 22:20:18 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
2009-12-22 19:51:24 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.draggable.js"></script>
|
2008-09-20 17:42:04 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2008-12-13 09:53:02 +00:00
|
|
|
$("#draggable").draggable({
|
2009-02-07 14:27:27 +00:00
|
|
|
cursorAt: { top: -10, left: -10 },
|
|
|
|
iframeFix: true
|
2008-12-13 09:53:02 +00:00
|
|
|
});
|
2008-09-20 17:42:04 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2009-02-07 14:09:07 +00:00
|
|
|
<div id="draggable">
|
|
|
|
<p> Draggable </p>
|
|
|
|
</div>
|
2009-02-07 14:27:27 +00:00
|
|
|
<iframe id="iframe1"></iframe>
|
|
|
|
<iframe id="iframe2"></iframe>
|
|
|
|
<iframe id="iframe3"></iframe>
|
2008-09-20 17:42:04 +00:00
|
|
|
</body>
|
|
|
|
</html>
|