Is there a way to detect a right click followed by paste with JavaScript on IE and Firefox ?
Update:
I decided to use Jquery to do it:
$('#controlId').bind('paste', null, function() {
// code
});
It's not exactly what I was looking (because it gets fired on 'ctrl + v' as well as in 'right click + paste' but I can work around it.
Tested it on Chrome, Firefox 3, IE 7 and IE 6 and it's working