JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" name="name" class="name" />
JavaScript
$(function() {
$('input.name').focus(function(){
this.type="password";
}).blur(function(){
this.type="text";
});
});