destroy

The destroy() method destroys the instance of the Checkbox widget.

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

<script type="text/javascript">
    $(function () {
        $("#checkbox").shieldCheckBox({
            label: "checkbox 1",
            enabled: false
        });
    });

    $("#checkbox").swidget().destroy();
</script>