When inputting text, the right side of the text is hidden when we focus out or click outside the input field. I want to reverse this so that the left side is hidden and only the right side shows.
<input value="abcdefghijklmnopqrstwxyz123456789">
In the example above, we can see "abcdefghijklmnopqrstwxyz1" with the rest ("23456789") hidden. However, I want to display "klmnopqrstwxyz123456789" (the last part instead of the first part) and hide the initial part "abcdefghij" without using CSS direction.