Languages
[Edit]
EN

React - onDoubleClick example

3 points
Created by:
Frida-Timms
607

In this article, we would like to show you how to use onDoubleClick event in React.

Quick solution:

<button onDoubleClick={myFunction}>Click me</button>

 

Practical example

In below example, we use handleDoubleClick arrow function with button's onDoubleClick property that handles double click event.

Runnable example:

// ONLINE-RUNNER:browser;

// Note: uncomment import lines in your React project.
// import React from react';
   
const handleDoubleClick = () => {
  console.log('onDoubleClick event handled!');
};

const App = () => {
  return (
    <div className="App">
      <button onDoubleClick={handleDoubleClick}>Click me</button>
    </div>
  );
};

const root = document.querySelector('#root');
ReactDOM.render(<App />, root );

Hint: React has it's own onDoubleClick property to handle double click event that is equivalent of dblclick event that is used by pure JavaScript.

 

Alternative titles

  1. React - double click event example
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

ReactJS

React - onDoubleClick example
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join