refresh

The refresh() method reloads the current instance of the Window widget.
The optional parameter options gives the possibility to extend the initial options with the new ones.

<div id="window" />

<script type="text/javascript">
jQuery(function($) {
    var window = $("#window").shieldWindow({
        title: "Window Title"
    }).swidget();

    window.refresh();
});
</script>