+1 vote
in JavaScript by
How To Get The Contents Of An Input Box Using Javascript?

1 Answer

0 votes
by

Use the "value" property.

var myValue = window.document.getElementById("MyTextBox").value;

Related questions

0 votes
asked Oct 10, 2023 in JavaScript by DavidAnderson
0 votes
asked Feb 7, 2020 in Onsen UI by DavidAnderson
...