+ 1
Inputting user data on javascript variables
how would i leave a field open for my users to input data and have it be used as a variable
2 ответов
+ 2
<input type="text" id="input_id">
var input = document.getElementById('input_id'). value;
+ 1
thank you