refresh

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

<input id="switch" type="checkbox" />

<script type="text/javascript">
    $(function () {
        $("#switch").shieldSwitch({
            checked: true
        });

        $("#switch").swidget().refresh();
    });
</script>