JSFiddle - React, Tailwind, and code Playground

by deepak sisodiya

HTML

Name:<input type="text" name="fullname"><br>
Email:<input type="text" name="email">

JavaScript

// jquery focus and blur event

$("input").focus(function () {
    $(this).css("background-color", "#cccccc");
});
$("input").blur(function () {
    $(this).css("background-color", "#ffffff");
});