Author -  Sai gowtham

How to get an element by ID in React

In this tutorial, we are going to learn how to get an element by ID in React with the help of an example.

Consider, that we have a component like this.

import React from "react";

function App() {
  return (
    <div>
      <button>Add</button>    </div>
  );
}

Now, we need to get the above button by ID in react.

To get an element by id in react:

  1. First, add the id attribute to the element you want to access.

  2. Call the document.getElementById() method by passing the id inside the useEffect() hook.

Here is an example:

App.js
import React, { useEffect } from "react";

function App() {
  useEffect(() => {
                           // id name is "my-btn"
    const btn = document.getElementById("my-btn");
    console.log(btn);
  }, []);

  return (
    <div>
      <button id="my-btn">Add</button>
    </div>
  );
}

Output:

<button id="my-btn">Add</button>

But React recommends us to use refs for accessing the dom elements in hooks or event handler functions.

Here is an example of how to get the particular element in react using the useRef hook:

import React, { useEffect, useRef } from "react";

function App() {
  const btnRef = useRef(null);

  useEffect(() => {
    const btn = btnRef.target;
    console.log(btn);
  }, []);

  return (
    <div>
      <button ref={btnRef}>Add</button>
    </div>
  );
}

export default App;

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY