How to Right-Align Text Entry Text with javascript? | XM Community
Skip to main content
Solved

How to Right-Align Text Entry Text with javascript?


Within a text entry box for a matrix table question, is there a way to right-align the text within the text entry box using javascript?

I've seen a post about right aligning the box itself, but not one about right aligning the text within the box. Many thanks!

Best answer by TomG

Add the following to the addOnload function:
```
jQuery("#"+this.questionId+" input[type=text]").css("text-align", "right");
```
View original

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5909 replies
  • Answer
  • July 19, 2018
Add the following to the addOnload function:
```
jQuery("#"+this.questionId+" input[type=text]").css("text-align", "right");
```

  • Author
  • 1 reply
  • July 19, 2018
Many thanks! Works perfectly!