change

Fired when the value of the widget is changed by the user.

The event handler function context (available via the this keyword) will be set to the widget instance.

Example - subscribe to the "change" event after initialization

<div id="signature"></div>
<script>
    function signature_change() {
        var value = this.value();
    };
    $("#signature").kendoSignature();
    var signature = $("#signature").data("kendoSignature");
    signature.bind("change", signature_change);
</script>
In this article