step

The drag step in pixels to use when dragging. Defaults to null, which means that the element will follow the mouse movement when dragged.

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

<script type="text/javascript">
    jQuery(function ($) {
        $("#div1").shieldDraggable({
            step: 10
        });
    });
</script>