
Solved
How to delay the slider bar from appearing for 5 seconds?
I am using slider bar in one of my questions. The questions involves two lines of text and a picture. However, I want the slider bar AND its correspnoding question to appear after 5 second. Can you please help me with that? I attached a screenshot and highlighted the items I want to appear with a delay.
!

Best answer by Anonymous
Hello @busmarketing ,
Paste the below code in the js(onReady) of slider question
var that =this.questionId;
jQuery("#"+this.questionId+ " .QuestionBody").css("visibility","hidden");
setTimeout(function(){
jQuery("#"+that+" .QuestionBody").css("visibility","visible")
}, 5000);
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
