There is any way to store my text in the input box into a javascript varible?

there is any way to store my text in the input box into a javascript varible?

Sure:

var foo = document.getElementById('myInputElementId').value;
1 Like

i got it :slight_smile: thank you .

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.