Latest solutions
Latest comments
- @SGautam1108Submitted about 3 years ago@julabinaPosted about 3 years ago
hi, maybe use Input event
nameOfInput.addEventListener("input", (event) => { /* you can retrieve the event in a variable, or use it wherever you want. */ myVariable = event.target.value; }
1