Is there a way to make a div container appear after a specific time period, let's say 10 seconds? I am using a CLASS
instead of an ID
.
I attempted the following:
$(document).ready(function() {
$(".contentPost").delay(5000).fadeIn(500);
});
As well as this CSS:
.contentPost {
display: none;
}
However, this method is no longer effective for me. Any alternative suggestions?