Is it possible to hide element 5 seconds after the page load? I know there is a jQuery solution.
I want to do exactly same thing, but hoping to get the same result w
Why not try fadeOut?
$(document).ready(function() { $('#plsme').fadeOut(5000); // 5 seconds x 1000 milisec = 5000 milisec });
Loading... Please Wait
fadeOut (Javascript Pure):
How to make fadeOut effect with pure JavaScript