I'm working on entering dollar amounts into a text input field. Is there a way when I have direction set to RTL that I can maintain the cursor to be at the farthest right position and keep it there?
<input type="text" id="textArea">
CSS:
#textArea {
direction:RTL;}
This just starts the cursor on the right, but when you type it still moves in the standard fashion. Any help would be appreciated.