jQuery show for 5 seconds then hide

 


$("#myElem").show();
setTimeout(function() { $("#myElem").hide(); }, 5000);

Comments

Popular posts from this blog

Target class controller does not exist - Laravel 8