<html>
<head>
<title>Draggable</title>
<script src="jquery.js"></script>
<script src="jquery-ui.js"></script>
<style>
#draggable{
width: 150px;
height: 150px;
padding: 0.5em;
}
</style>
<script>
$(function(){$("#draggable").draggable({containment: "parent", cursor: "move", scrollSensitivity: 1000, scrollSpeed: 1000});});
</script>
</head>
<body>
<div style="width: 400px; height: 450px;">
<div id="draggable">
<p>DRAG ME</p>
</div>
</div>
</body>
</html>
<head>
<title>Draggable</title>
<script src="jquery.js"></script>
<script src="jquery-ui.js"></script>
<style>
#draggable{
width: 150px;
height: 150px;
padding: 0.5em;
}
</style>
<script>
$(function(){$("#draggable").draggable({containment: "parent", cursor: "move", scrollSensitivity: 1000, scrollSpeed: 1000});});
</script>
</head>
<body>
<div style="width: 400px; height: 450px;">
<div id="draggable">
<p>DRAG ME</p>
</div>
</div>
</body>
</html>
Comments