Author -  Sai gowtham

Remove the focus from a button on click in React

In this tutorial, we are going to learn about how to remove the focus from a button element on click in React.

Consider, we have the following button in our React app.

import React from "react";

function App() {

  return (
    <div>
      <button>Search</button>
    </div>
  );
}

Now, when a user clicks on the button we need to remove the focus of it.

Removing the focus from a button on click

To remove the focus from a button on click, first we need to access the button inside the react component using the useRef hook then call a blur() method on it. So, it removes the focus of a button.

Here is an example:

import React, {useRef} from "react";

function App() {
   const buttonRef = useRef(null)

   function handleClick(){
    buttonRef.current.blur(); // removing focus
  }

  return (
    <div>
      <button onClick={handleClick} ref={buttonRef}>
         Search
      </button>    </div>
  );
}

In the example above, we first added a buttonRef to the button element. So, it allows us to access and modify the dom node of an button inside the component methods.

Next, we added a buttonRef.current.blur() method inside the handleClick() event handler, so when a Search button is clicked it removes the focus from a button.

We used the HTMLElement.blur() to remove the focus from a element.

The blur() method removes the keyboard focus from the element, where it was called on.

If you want to set a focus back to the button, then call a focus() method on it.

buttonRef.current.focus(); // adding the focus

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