toggle

A Boolean value, determining whether the button will have a toggle behavior. This is false by default.
A working example can be seen in the following location.


<button id="but1" ></button>

<script type="text/javascript">

     $(function () {
        $("#but1").shieldButton({
            toggle: true
        });
     });

</script>