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 :">
