checked

A boolean value specifying whether the switch will be initially checked.
If not set, the widget will get the checked state from the underlying checkbox element.

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

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