, , , , , ".questions" , .
, , .
$(document).ready(function () {
var Counter = 0;
var interval = setInterval(function () {
Counter += 20;
var questionOne = $('.questions').find('.question').eq(0);
questionOne.removeClass('hide');
if (questionOne.length > 0)
Counter = 3000;
if (Counter >= 3000)
clearInterval(interval)
}, 2);
});
>
$(document).ready(function () {
setTimeout(function () {
var questionOne = $('.questions').find('.question').eq(0);
questionOne.removeClass('hide');
}, 100);
});
>
hop .