vote up 2 vote down star

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

flag

I'm afraid. What are you trying to do ? I think depending on the right click and paste has serious web usability issues. – Guido GarcĂ­a Jan 14 at 8:38
I'm confused. Do you mean "detect a right click followed by paste" or "detect a right click, then do a paste"? – Sietse Jan 14 at 8:41
Sorry about that. I changed the title and added more text to make it easier to understand. – Rismo Jan 14 at 20:11
@Guido García: I'm using the ajax control toolkit autocomplete extender, the problem is that it doesn't autocomplete when you paste text using the mouse on IE (works on Firefox and using ctrl+v works on both) so I'm trying to catch the event to fire the autocomplete. Does this make sense? – Rismo Jan 14 at 20:25

2 Answers

vote up 4 vote down check

With IE you have onpaste

With Mozilla you can look into oninput and

elementReference.addEventListener("DOMCharacterDataModified", function(e){ foo(e);}, false);

There is no easy as pie solution.

Eric

link|flag
vote up 0 vote down

A cheap hack (that works) that you can try is:

  • jQuery's mouseleave function.

I've noticed with IE8 that if you right-click in a text box and then select 'paste', it delays the "mouseleave" event until the paste has finished. So it consistently fires right after the paste! :) Works for me and got me out of trouble perfectly actually.

This is only for an intranet app, I haven't tested in Firefox etc.

Cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.