position

The position method positions the window widget to a given position.

Parameter Data
It has one parameter which is an object with left and top properties.

This is demonstrated in the sample below:

<div id="window" />

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

    //this will position the window widget to a position with coordinates { left: 300, top: 300 }
    window.position({ left: 300, top: 300 });
});
</script>