I don't think there's a default "double right click" event handler, but this wouldn't be that hard to write.
Psuedo code ----------- $('#someElement').rightclick(function(){ totalClicks = 0; if (totalClicks == 2) { // do some stuff totalClicks = 0; } else { totalClicks++; } }); -----Original Message----- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of TheBlueSky Sent: Saturday, November 29, 2008 6:21 AM To: jQuery (English) Subject: [jQuery] Double right-click, anyone? Hi everyone, Does anyone has code, implementation, plug-in or whatever to detect double right-click? I'm searching and trying for couple of days now without any result. Appreciate any help.