volumeControl Boolean (default: true)

Whether to show a volume control when audio is played.

In IE and other browsers that do not support wav audio will not show up the volume control. Plugin-based embed elements cannot be controlled programmatically.

Example

<input id="captcha" />
<script>
    $("#captcha").kendoCaptcha({
        volumeControl: false,
        handler: "https://demos.telerik.com/kendo-ui/captcha/reset",
        audioHandler: function (args) {
            args.success("https://demos.telerik.com/kendo-ui/captcha/audio?captchaId=" + args.data.captchaId);
        }
    });
</script>
In this article