Solved
Delay a quesiton from appearing
I want participants to read a passage and then I want them to respond to a few questions after the passage but on the same page. How do I create a delay to give them time to read the passage and then have the questions appear?
Best answer by Anonymous
Hello @pnaemi ,
Add the following code in js(OnLoad) of the passage question
jQuery("#QID15").hide();
setTimeout(function () {jQuery('#QID15').show();},4000);
Now QID15 is the id of the question you want to ask, replace that QID with your question id and do similar for other Questions you are asking.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
