pinned

pinned - Boolean (default: false)

Initializes the Window widget in a pinned or unpinned state.

The code below demonstrates the use of pinned option.

<div id="window" />

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