<textareaid="editor"></textarea><script>$("#editor").kendoEditor({paste:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log(e.html);}});</script>
<textareaid="editor"></textarea><script>functioneditor_paste(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log(e.html);}$("#editor").kendoEditor();var editor =$("#editor").data("kendoEditor");
editor.bind("paste", editor_paste);</script>
<textareaid="editor"></textarea><script>functiononPaste(e){// replace all <a> / </a> tags in the pasted content
e.html= e.html.replace(/<\/?a[^>]*>/g,"");}$("#editor").kendoEditor({paste: onPaste
});</script>