<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test</title>
<script type="text/javascript" src="/jquery-1.5.1.min.js"></script>
<!--<script type="text/javascript" src="/jquery-ui-1.8.11.custom.min.js"></script>-->
<script type="text/javascript" src="/jquery.ui.core.min.js"></script>
<script type="text/javascript" src="/jquery.ui.widget.min.js"></script>
<script type="text/javascript" src="/jquery.ui.mouse.min.js"></script>
<script type="text/javascript" src="/jquery.ui.draggable.min.js"></script>
<script type="text/javascript" src="/jquery.ui.droppable.min.js"></script>
<script type="text/javascript" src="/jquery.ui.position.min.js"></script>
<script type="text/javascript">
$(document).ready
(
function()
{
$('.draggable_item').draggable
({
revert: true,
containment: '#build_board_text'
});
$('#dst_landscape_8-5x11').droppable
({
drop: function(event, ui)
{
alert('Dropped!');
}
});
});
</script>
</head>
<body>
<div class="build_board_text" id="build_board_text">
<div id="src_landscape_8-5x11">
<div id="draggable_1" class="draggable_item">
<img src="../ImageLibrary/image1.jpg" width="70" height="70" alt="" /><br />Text 1.
</div>
<div id="draggable_2" class="draggable_item">
<img src="../ImageLibrary/image2.jpg" width="70" height="70" alt="" /><br />Text 2.
</div>
</div><!-- source list -->
<div id="dst_landscape_8-5x11"> </div><!-- destination list -->
</div><!-- build_board_text -->
</body>
</html>
Bookmarks