I'm trying to write a Javascript function to edit content from clipboard before pasting. Right now i got bound event 'paste' to function via JQuery.
$(this.elementDoc).bind('paste', function(event){
self.OnPaste(event);
});
But that's not important. Now i would like to get Data from clipboard, but i can't find out how. I would be glad for every hint.