Is there a way to leave the placeholder text in place while typing and have it extend forward as I type?
For example, if I type 100 spaces and then "INX", it should look like this:
100 INX
So that as I type "100." the "INX" moves forward, resulting in:
100 INX
<!DOCTYPE html>
<html>
<body>
<h1>Extend Placeholder Forward</h1>
<input type="text" id="left" name="left" oninput="right.value = left.value; return true;" placeholder="INX"/>
<input type="text" id="right" name="right" oninput="left.value = right.value; return true;" placeholder="INX" disabled />
</body>
</html>