I need to capture the contents of a text that will be pasted into an input before the glue happens.
I've already captured the collage event:
$(input).on("paste", function (evt) {
/* evt contém tudo sobre o evento menos o conteúdo */
});
How do I get the contents of the clipboard cross-browser?