requestStart

Fired when the captcha makes a request to a handler - can be distinguished via the type argument in the event data.

Event Data

e.type String

The type triggered the request: "reset|validation|audio".

e.data Object

The context passed to the request.

Example

<input id="captcha" />
<script>
    var captcha = $("#captcha").kendoCaptcha({
        handler: "https://demos.telerik.com/kendo-ui/captcha/reset",
        validationHandler: "https://demos.telerik.com/kendo-ui/captcha/validate",
        requestStart: function (ev) {
            console.log(ev.type);
        }
    }).data("kendoCaptcha");
</script>
In this article