I have created a small function in jquery. I want it to load after some delay in time. But I am unable to execute this code with delay. Here is the Jquery code below.
$(function(){
$('.fade').delay(5000).show();
$('.sboxa').delay(5000).show()
})
Here is the html code below:
<div class="fade"></div> <div class="sboxa"></div>
Please help in this functionality. Thanks