Can I add a value before or after an input value?
I want to modify the text shown for the value, but without actually changing the value. So If I read out the value then it should still return 1000.
<input id="myInput" type="text" value="1000">
How can I add the text Foo
before or Bar
after 1000 withouth changing the value itself?
Foo and Bar should NOT be editable by the user.