I need to implement task which is quite common feature for RichTextEditors - take HTML from clipboard. Can anyone help with guide on how to solve this task?
In Chrome, I access clipboardData through the event using this code:
$(document).bind('paste', function(e) { var clipboardData = e.originalEvent.clipboardData; });