Where the input values are stored?
Answers
Answered by
0
Explanation:
When a user inputs a value, that value is stored in the DOM.
Answered by
0
Explanation:
╔═❤️══════════════╗
...HERE GØΣS UR ANS...
╚══════════════❤️═╝
ⒶⓃⓈⓌⒺⓇ
input type="text" id="my-input" value="foo">
If I change the text inside the input box, I know I can retrieve it via:
$('#my-input').val()
document.getElementById('my-input').value
But if I Right click > Inspect I will see something like:
enter image description here
Similar questions