destroy

The destroy() method destroys the instance of the Droppable widget.

<div id="div2" style="width:100px; height:100px; border:1px solid black;">
    Drop items here...
</div>

<script type="text/javascript">
    jQuery(function ($) {
        $("#div2").shieldDroppable();

        $("#div2").swidget("Droppable").destroy();
    });
</script>