Atraso no jQuery
setTimeout(
function()
{
//do something special
}, 5000);
Easy Eland
setTimeout(
function()
{
//do something special
}, 5000);
$( "#foo" ).slideUp( 300 ).delay( 800 ).fadeIn( 400 );
$(this).delay(1000).queue(function() {
// your Code | Function here
$(this).dequeue();
});