I want to catch the paste event with right Click and Paste selection on a textarea. What I did is:
$(window).bind('paste', function(event) {
pasteText();
return false;
});
and it works ok. So when the Paste is clicked a small popup window is shown. What I want is to make this popup window shown on mousedown event. I mean when I click the Paste (mousedown) then I want to see the popup. Is this possible to happen?
Thanks in advance