```
jQuery("#"+this.questionId+" td.c1:first").html("Label Text");
```
> Thanks Tom! This is exactly what I was trying to do. Just to be super picky though, is there a way to left justify the label??
```
var cell=jQuery("#"+this.questionId+" td.c1:first");
cell.css("text-align","left");
cell.html("Label Text");
```
Hi TomG - Is there a way to make this label available for translation as well, while using the Translate survey option in qualtrics. I need to translate it in Japanese, Chinese simplified and Chinese Traditional.
Thanks in advance.
Hi TomG - Is there a way to make this label available for translation as well, while using the Translate survey option in qualtrics. I need to translate it in Japanese, Chinese simplified and Chinese Traditional.
sombwit - You can use the trick described in this post: https://www.qualtrics.com/community/discussion/comment/15542#Comment_15542
Hi everyone. Following TomG's tip, can you suggest me a way to implement exactly this text as label of the matrix? I am trying to replicate Murphy's SVO but the instruction here does not correspond with the correct layout. Thanks!
You Receive
|
|
Other Receives
https://www.qualtrics.com/community/discussion/comment/36660#Comment_36660jQuery("#"+this.questionId+" td.c1:first").css("text-align","center").html("You Receive
|
|
Other Receives");
Is there a way to increase the font on:
var cell=jQuery("#"+this.questionId+" td.c1:first");
cell.css("text-align","left");
cell.html("Label Text");
I’ve tried adding the items below it the script above without success.
var fontSize = 200;
and
var span = document.getElementByID("Activity");
span.style.fontSize = "25px";
Thanks!
Is there a way to increase the font on:
var cell=jQuery("#"+this.questionId+" td.c1:first");
cell.css("text-align","left");
cell.html("Label Text");
I’ve tried adding the items below it the script above without success.
var fontSize = 200;
and
var span = document.getElementByID("Activity");
span.style.fontSize = "25px";
Thanks!
It should be:
jQuery("#"+this.questionId+" td.c1:first").css({"text-align":"left","font-size":"25px"}).html("Label Text");
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.