JSFiddle - React, Tailwind, and code Playground

by sapioit

HTML

<div id="text-standard">Va rugam asteptati 5 secunde..</div> 
<div id="text-nou" style="display:none;">Text afisat dupa 5 secunde...</div>

JavaScript

setTimeout(
   function(){
     
      $('#text-standard').replaceWith($('#text-nou'));
      $('#text-nou').show();
     
   },
   5000
);