added 'cursor' options to examples

This commit is contained in:
Maggie Costello Wachs 2009-01-19 17:39:27 +00:00
parent 2dff95fb8b
commit 19ba6fe1cd

View File

@ -12,8 +12,8 @@
</style>
<script type="text/javascript">
$(function() {
$("#draggable").draggable({ cursorAt: { top: 56, left: 56 } });
$("#draggable2").draggable({ cursorAt: { top: -5, left: -5 } });
$("#draggable").draggable({ cursorAt: { cursor: 'move', top: 56, left: 56 } });
$("#draggable2").draggable({ cursorAt: { cursor: 'crosshair', top: -5, left: -5 } });
$("#draggable3").draggable({ cursorAt: { bottom: 0 } });
});
</script>