New to Kendo UI for jQueryStart a free 30-day trial

Redraw

methods

Redraws the QR code using the current value and options.

The setOptions method sets new options to the QRCode and redraws it att he same time. Calling redraw() int his case is not necessary.

<div id="qrCode"></div>
<script>
  $("#qrCode").kendoQRCode({
    value: "mailto:clientservice@telerik.com",
  });

  var qrCode = $("#qrCode").data("kendoQRCode");
  qrCode.options.background="#FFB821"
  qrCode.redraw();
</script>
Not finding the help you need?
Contact Support