Solved
Delay hotspot response?
Hello,
I would like to delay hotspot regions from being clickable/selectable for a certain amount of time and I have no idea how to do this. Could anyone help me?
Thanks,
S
Best answer by Anonymous
Hello @syntheso ,
Paste the following code in the js(OnReady) of the Hot spot question
jQuery(".QuestionBody").css('pointer-events','none');
setTimeout(function () { jQuery(".QuestionBody").css('pointer-events','');},4000);
The above code will prevent the user from making any events(clickable/selectable) on the hot spot graphic for 4000ms (you can change the value of time as per your requirement)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
