Computer Science, asked by harikrishan88, 4 months ago

Where the input values are stored?​

Answers

Answered by sakshi0954sharma
0

Explanation:

When a user inputs a value, that value is stored in the DOM.

Answered by HEARTQUEENN
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