Forums

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

Home Forums JavaScript Fade Text out after specific time Re: Fade Text out after specific time

#55270
SgtLegend
Member

You should be able to simply use

$(function() {
$('#element').delay(miliseconds).fadeOut();
});