JSFiddle - React, Tailwind, and code Playground
by envira
HTML
<input id="myId" placeholder="hello mate " type="text" />
JavaScript
$(function(){
$('#myId').data('holder',$('#myId').attr('placeholder'));
$('#myId').focusin(function(){
$(this).attr('placeholder','');
});
$('#myId').focusout(function(){
$(this).attr('placeholder',$(this).data('holder'));
});
})