JSFiddle - React, Tailwind, and code Playground
by Shree Khanal
HTML
<span class="sfPswd" data-password="YourPswd">**********</span>
JavaScript
$(".sfPswd").on('click', function() {
var $pswd = $(this);
var password = $pswd.data('password');
$(this).text(function(i, text) {
return text === "**********" ? password : "**********";
});
});