modal

modal - Boolean (default: false)

Initializes the Window widget in a modal or non-modal state.

The code below demonstrates the use of modal option.

<div id="window" />

<script type="text/javascript">
    jQuery(function($) {
            $("#window").shieldWindow({
                   modal: true
            });
    });
</script>