messages.success String
(default: "Verification successful")
The message rendered when validation is successful.
Example
<input id="captcha" />
<script>
$("#captcha").kendoCaptcha({
handler: "https://demos.telerik.com/kendo-ui/captcha/reset",
validationHandler: "https://demos.telerik.com/kendo-ui/captcha/validate",
messages: {
success: "Success",
}
});
</script>