position

position - An object (default: UNDEFINED)

Initializes the position of the Window widget.
It is an object with left and top properties.

The code below demonstrates the use of position option.

<div id="window">Hello ShieldUI!</div>

<script type="text/javascript">
    jQuery(function($) {
          $("#window").shieldWindow({
                 position: { left: 300, top: 300 }    
          });
    });
</script>