Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 421 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 421 Bytes

jQuery.event.dblrightclick

Special event "Double right click" for jQuery 2

Usage:

// Simple usage
$("#widget").on("dblrightclick", ".item", function() {
    alert("This is double right click!");
});

// With params
$("#widget").on("dblrightclick", ".item", {
    offsetX : 2,
    offsetY : 2,
    offsetT : 500
}, function() {
    alert("This is double right click!");
});