Author -  Sai gowtham

Clearing the input field value in React

In this tutorial, we are going to learn about how to clear an input field value in react by clicking a form submit button.

We mostly clear the input field values whenever we submit a form or resetting the cluttered form.

Clearing the input field values

If you are using controlled components, it means your form (input) data is controlled by the react state, so that you can clear an input field value by assigning an empty string '' to the react state.

Here is an example:

Login.js
import React, { useState } from "react";

export default function Login() {
  const [email, setEmail] = useState("");
  const [password, setPassword] = useState("");

  function handleSubmit(e) {
    e.preventDefault();
    console.log(email, password);
    // clearing the values
    setEmail("");    setPassword("");  }

  return (
    <form>
      <input
        type="email"
        placeholder="Email"
        value={email}
        onChange={(e) => setEmail(e.target.value)}
      />
      <input
        type="password"
        placeholder="Password"
        value={password}
        onChange={(e) => setPassword(e.target.value)}
      />
      <button type="submit" onClick={handleSubmit}>        Login      </button>    </form>
  );
}

In the above example, we are clearing the email, password input field values whenever a user clicks on the login button.

Similarly, if you are using uncontrolled components where your form input data is handled by dom itself instead of react state where you can clear it like this.

Login.js
import React from "react";

export default function Login() {
  function handleSubmit(e) {
    e.preventDefault();
    console.log(this.email.value, this.password.value);

    // clearing the values
    this.email.value = "";    this.password.value = "";  }

  return (
    <form>
      <input
        type="email"
        placeholder="Email"
        ref={(el) => (this.email = el)} />      <input
        type="password"
        placeholder="Password"
        ref={(el) => (this.password = el)}      />
      <button type="submit" onClick={handleSubmit}>
        Login
      </button>
    </form>
  );
}

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