Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jquery help Re: jquery help

#107717
TheDoc
Member

Try doing this:


$('.sent-message').delay(4000).fadeOut("slow", function() {
$('intro, form#contact_form').show();
});

This is saying, “once the fadeout is completed, show our form”.