I have a questions that uses in-page display logic. I want to hide the next button until one of the questions shows. I can hide the button but can’t get it to show based on the conditional question loading.
Solved
Hide next button until In-page display logic question is shown

Best answer by nitish08
Hi
I found the below workaround, hope this works for your project. Also, don’t forget to change the QID with the one that is having display logic.
jQuery("#NextButton").hide();
jQuery(".JFE").on("mouseover change click", function(){
jQuery("#NextButton").hide();
if (jQuery("#QID2").is(":visible")){
jQuery("#NextButton").show();
}else{
jQuery("#NextButton").hide();
}
})
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.