JSFiddle - React, Tailwind, and code Playground
by sapioit
HTML
<div id="text-standard">Va rugam asteptati 2 secunde..</div>
<div id="text-nou" style="display:none;">Text afisat dupa 2 secunde...</div>
JavaScript
setTimeout(
function(){
$('#text-standard').replaceWith($('#text-nou'));
$('#text-nou').show();
},
2000
);