Is it possible to modify the wordings of default message for skipping "request response" items??
Page 1 / 1
Hi @lamjas
I don't believe so, unfortunately. Sounds like a good candidate for a Product Idea to submit, however.
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
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.