click

The click event is fired when the user clicks on the RadioButton or on the corresponding label element(when the enableLabelClick is set to true).

<input id="radiobutton" type="radio" ></div>

<script type="text/javascript">
    $(function () {
        $("#radiobutton").shieldRadioButton({
            label: "radiobutton 1",
            events: {
                click: function(e) {
                    alert("radiobutton is clicked");
                }
            }
        });
    });
</script>