Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 299 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 299 Bytes

A simple tripleclick event for jQuery.

Click on an element three times within 1s to trigger the event.

Usage:

$("#element").bind("tripleclick", function()
{
    // Actions
});

// or
    
$("#element").on("tripleclick", function()
{
    // Actions
});