enabled

Enables animation for the Draggable.
Defaults to true.

<div id="div1">Hello DIV!</div>

<script type="text/javascript">
    jQuery(function ($) {
        $("#div1").shieldDraggable({
            animation: {
                enabled: false  // disable animation
            }
            events: {
                stop: function(e) {
                    // cancel the drag
                    e.preventDefault();
                }
            }
        });
    });
</script>