Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a simple accordion with jquery:

$(document).ready(function() {
    $('div.question').click(function() {
        $('div.answer').slideUp(600);   
        $(this).next().slideDown(600);
    });
    $("div.answer").hide();
});

HTML:

<div class="question">Question</div>
<div class="answer">Answer</div>

How i can add and show a timer before showing answer div?

my request is, after click on Question div, i need to show a 30 sec timer with loading image and after 30 sec i want to show answer div.

thanks :">

share|improve this question

1 Answer

Use setTimeout(f, 30000); to call function f in 30 seconds.

share|improve this answer
thanks but i'm not professional! i don't know how i can use your code or show loading image with 30 sec countdown! – Alireza Sep 16 '12 at 1:53
Google "jquery countdown timer" and use one of them instead of trying to do it yourself. – Barmar Sep 16 '12 at 2:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.