Plugin Support
Jasmine
(@hyenokian)
Hi @gecikabbe,
Thank you for the topic.
If you want to set a delay before the user can click on the Next button, you can use this custom JavaScript code.
(function ($) {
$(document).ready(function () {
$(document).find('.ays_next, .ays_next.start_button').on('click', function(e) {
$(document).find('.ays-quiz-container .ays_buttons_div').fadeOut();
setTimeout(function(){
$(document).find('.ays-quiz-container .ays_buttons_div').fadeIn();
}, 30000);
});
});
})( jQuery );
Thank you!
Thank you so much dear Jasmine, it works! 🙂