Hi everyone,
is there a way to edit the signature box to say “initial here” instead of “sign here”? I was hoping to use the signature box to get initials for opting in and opting out for a consent form.
Hi everyone,
is there a way to edit the signature box to say “initial here” instead of “sign here”? I was hoping to use the signature box to get initials for opting in and opting out for a consent form.
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
jQuery("#"+this.questionId+"-SignHere").html("Initials");
});
Thank you!!!
Hi
I don’t think you can access directly that translation either. I would report the incorrect translation to Qualtrics support so they can fix it on their end, but meanwhile here is how to fix it yourself :
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
let lang = jQuery('html').attr('lang');
if (lang=='TH') {
jQuery("#"+this.questionId+"-SignHere").html("InitialsInThai");
jQuery("#"+this.questionId+"-ClearSignature").html("ClearInThai");
} else {
jQuery("#"+this.questionId+"-SignHere").html("Initials");
jQuery("#"+this.questionId+"-ClearSignature").html("Clear");
}
});
Basically, you’re querying the selected language and replacing the content of the SignHere and ClearSignature elements depending on the result. Add other conditions for your other languages. The last else will contain the “default” language.
OMG!! Thank you!!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.