ReactJS

ReactJS | Handling Events with Example

Hello React Friends,

I will explain event handling in ReactJS in detail in this tutorial guide.

Event handling allows users to interact with a web page and perform actions when events like click or hovering occur. Following are some events that are triggered by the system:

  • Clicking an element
  • Hovering an element
  • Scrolling page
  • Loading a webpage
  • Image loading
  • Submitting a form

Event Handling in ReactJS

React event handling is similar to event handling on DOM elements. There are some syntax differences in event handling for React and HTML.

Difference Between Html And React Event Handling

React events are written in camelcase instead of lowercase.

onClick instead of onclick.

React event handlers are passed as a function instead of a string. They are written inside curly braces.

onClick={fireme} instead of onClick=“fireme()”.

Event handling example in React:

<button onClick={fireme}>Click to fire me</button>

Event handling example in HTML:

<button >

Example:

import React from 'react';
import ReactDOM from 'react-dom/client';

function MyFireArea()
{
    const fireme = () =>
    {
        alert(“I am Burn!”);
    }
    return (
        <button onClick={fireme}>Click to fire me</button>
    );
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<MyFireArea />);

Passing Arguments to Event Handlers

Pass an argument to an event handler using an arrow function.

Example:

function MyFireArea()
{
    const fireme = (myArg) =>
    {
        alert(myArg);
    }
    return (
        <button onClick={() => fireme(“I am Burned”)}>Click to fire me</button>
    );
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<MyFireArea />);

React Event Object

Event handlers have access to the react event that triggered the function.

Example:

function MyFireArea()
{
    const fireme = (myArg, b) =>
    {
        alert(b.type);
        /*
        'b' represents the React event that triggered the function,
        in this case the 'click' event
        */    }
    return (
        <button onClick={(event) => fireme("I am Burned", event)}>Take the shot!</button>
    );
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<MyFireArea />);

Conclusion:

Event handling in React is the same as handling events in HTML. There are just some differences in syntax between the two. I hope the above example helped you to understand event handling in ReactJS.

Find more blogs on ReactJS – Click here!

Share the tutorial with your friends and stay in touch with us.

Happy Coding!

Click to rate this post!
[Total: 2 Average: 5]
Bharat Desai

Bharat Desai is a Co-Founder at MageComp. He is an Adobe Magento Certified Frontend Developer 🏅 with having 8+ Years of experience and has developed 150+ Magento 2 Products with MageComp. He has an unquenchable thirst to learn new things. On off days you can find him playing the game of Chess ♟️ or Cricket 🏏.

Recent Posts

How to Integrate ChatGPT with Laravel Application?

In this guide, we'll explore how to integrate ChatGPT, an AI-powered chatbot, with a Laravel…

1 day ago

What are Net Sales? How to Calculate Your Net Sales?

In the world of business, understanding financial metrics is crucial for making informed decisions and…

3 days ago

Magento 2 Extensions Digest April 2024 (New Release & Updates)

Welcome to the MageComp Monthly Digest, where we bring you the latest updates, releases, and…

3 days ago

The ABCs of Geofencing: Definition, Features and Uses

In this era, businesses are always on the lookout for ways to engage with their…

4 days ago

How to Delete Product Variant in a Shopify Remix App using GraphQL Mutations?

Managing a Shopify store efficiently involves keeping your product catalog organized. This includes removing outdated…

5 days ago

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

1 week ago