enabled

Returns the status of the button control if used with no arguments, or enables or disables the control if passed a single Boolean argument.
A working example can be seen in the following location.


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

<script type="text/javascript">

     $(function () {
        $("#but1").shieldButton({
            enabled: false
        });
    });

</script>