iframeFix

Fixes any IFRAME elements on the page that might catch the mousemove events used for dragging.
Defaults to false.

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

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