height

height - Integer (default: 300)

Initializes the height of the Window widget.

The code below demonstrates the use of height option.

<div id="window" />

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