Hello I am wondering if someone can help me with adding a pop button for a user on the submit button asking if they really want to submit their survey?
Page 1 / 1
You can try code like
Qualtrics.SurveyEngine.addOnload(function() {
var nextButton = jQuery("#NextButton");
nextButton.click(function(event) {
var confirmContinue = confirm("Are you sure you want to continue?");
if (!confirmContinue) {
event.preventDefault();
}
});
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.