reset

Resets the Captcha with new image and id - triggers the handler action.

Example

<input id="captcha" />
<script>
    var captcha = $("#captcha").kendoCaptcha({
        handler: "https://demos.telerik.com/kendo-ui/captcha/reset"
    }).data("kendoCaptcha");

    setTimeout(function(){
        captcha.reset().done(function () {
            console.log("newimage");
        });
    }, 1500);
</script>

Returns

In this article