checked

Whether the checkbox is checked. If the enableThreeStates is set to true the checked property can be null.

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

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