width

width - Integer (default: 400)

Initializes the width of the Window widget.

The code below demonstrates the use of width option.

<div id="window" />

<script type="text/javascript">
    $("#window").shieldWindow({
        title: "Window Title",
        width: 500
    });
</script>