Existing survey pop up | XM Community
Skip to main content

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? 

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