Modify default message for skipping "request response" items | XM Community
Skip to main content
Is it possible to modify the wordings of default message for skipping "request response" items??
Hi @lamjas



I don't believe so, unfortunately. Sounds like a good candidate for a Product Idea to submit, however.
I believe @rondev has some custom code for sale to do this. You may want to message them directly.

Hi, we were able to customize the "request response" message with the below javascript code:

let my_interval;
Qualtrics.SurveyEngine.addOnReady(function(){
document.querySelector("#NextButton").onclick = function() {
my_interval = setInterval(() => {
err_msg = document.querySelector("#ErrorMessage");
if (err_msg != null) {
err_msg.innerText = "Custom Message";
clearInterval(my_interval);
}
}, 10);
};
});



That code worked great! Thank you!


Leave a Reply