0 votes
in ReactJS by
Supported Events for SyntheticEvent  in React JS

1 Answer

0 votes
by

React normalizes events so that they have consistent properties across different browsers.

The event handlers below are triggered by an event in the bubbling phase. To register an event handler for the capture phase, append Capture to the event name; for example, instead of using onClick, you would use onClickCapture to handle the click event in the capture phase.

Related questions

0 votes
+1 vote
0 votes
asked Dec 14, 2019 in ReactJS by AdilsonLima
0 votes
0 votes
0 votes
asked Dec 14, 2019 in ReactJS by AdilsonLima
0 votes
0 votes
asked Dec 14, 2019 in ReactJS by AdilsonLima
...