Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
jQuery

Double Click Event in jQuery

Respond to double-click with the dblclick event.

Double Click Event in jQuery — a practical guide to jQuery dblclick with clear examples you can reuse in real projects.

jQuery Tutorial Series (19/101). Prefer one article? Read the complete jQuery tutorial.

Short description

Avoid conflicting single-click handlers on the same control when possible.

dblclick

$('.item').on('dblclick', function () {
  $(this).toggleClass('selected');
});

Leave a reply

Your email address will not be published. Required fields are marked *