I have a div like this
<div id="sale">
........
</div>
and I tried to use both
$('#sale').delay(3000).slideDown(500);
and
setTimeout(sale(), 3000);
function sale() {
$('#sale').slideDown(500);
}
but neither of them are working. The jQuery delay says $('#sale').delay() is not a function while the setTimeout way says useless setTimeout call (missing quotes). If i add double quotes around the sale() call, it just says "Sale is not defined".
Why won't either of these work?
All i'm trying to do is make a div appear 3 seconds after the page is loaded.
setTimeout(sale, 3000);, notsetTimeout(sale(), 3000);– Reigel Nov 24 '10 at 1:37.delay()method was added injQuery 1.4. What version are you using? – user113716 Nov 24 '10 at 1:46