Go through below post
https://www.qualtrics.com/community/discussion/249/how-can-i-hide-the-previous-and-next-buttons-on-my-survey
Hello
@JenniferS ,
Paste the following code in the js(onLoad) of the text entry question
var that=this.questionId;
jQuery("#NextButton").hide();
jQuery("[id='QR~"+that+"']").keyup(function(){
if(jQuery(this).val() != ''){
jQuery("#NextButton").show();
}else{
jQuery("#NextButton").hide();
}
});
The above code will check the user has input the text and accordingly show or hide the next button. For auto-advance, add timer question on the same page with following settings(see image)
!
Thank you
@Shashi, that code is working! I greatly appreciate the help.