I have a survey that respondents fill out and sign. The form needs to be reviewed and re-signed periodically. I would like to send the respondents a "Retake as New Response" link so that they can review their previous answers, but I would like them to re-sign it. Is it possible to clear the signature question only so that they are forced to sign it again?
Page 1 / 1
Mamendoza This seems like a two-step process:
- Retake Survey Link: You can generate the re-take survey link by using the Q_R value in the link and adding the response ID. You can store this link as an embedded value such that you can visit that link and send it out as and when required.
brandid.qualtrics.com/jfe/form/SV_1234567890?Q_R=${e://Field/ResponseID}
- Adding JS to clear the text on retake link: This piece is a workaround, where we can make use of the below JS such that when someone takes the retake link and when they go through the pages where they review their answer and move forward, the JS will help clear the signature value of that specific question.
Qualtrics.SurveyEngine.addOnReady(function()
{
this.questionclick = function(event,element){
let selectedChoices = this.getSelectedChoices();
if(selectedChoices.include('1') === false){
document.getElementById("QR~QID4~1~TEXT").value=''
}
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.