I am using the Javascript below to hide a question based on Embedded data. The problem is that there are white spaces. How can I remove that?
if("${e://Field/PrimaryCountry}"=="Argentina"){
jQuery("#"+this.questionId").css("visibility","collapse")
}
rochediacx.fra1.qualtrics.com/jfe/preview/SV_0rmXSQURf0tylw2?Q_CHL=preview&Q_SurveyVersionID=current&PrimaryCountry=Argentina
Page 1 / 1
Use the following instead of visibility collapse:
jQuery("#"+this.questionId").hide();
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.