3
I need to capture the content 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 to get the contents of the clipboard cross-browser?
Worked on IE too :)
– Oralista de Sistemas