How can I make the element (div with class="request"), fade out after loading page and waiting 5 seconds, basically:
1) load the page
2) wait 5 seconds
3) fade out the element
Here's what I have:
jQuery(document).ready
(
function()
{
jQuery('div.request').fadeOut(5000);
}
);

