I have an input field as follows:
<input type="text" id="screen" maxlength="20">
When I type in it, I see text, but there is no change to the html reflecting this.
How do I change the text inside this input using jQuery?
I tried the following but it didn't work:
document.getElementById('screen').innerHTML = "10";