JSFiddle - React, Tailwind, and code Playground

HTML

<input type="input" name="fName" placeholder="Your First Name">

JavaScript

$('input[name=fName]').on("click focus",function(){
    $(this).attr("placeholder","Your First Name Goes Here");
}).on("blur",function(){
    $(this).attr("placeholder","Your First Name");
});