i need help on html form.
I got a javascript variable, and I am trying to pass the variable to a html form texbox. I want to display the variable on the textbox dyna
Pass the variable to the form element like this
your form element
javascript
var test = "Hello"; document.getElementById("mytext").value = test;//Now you get the js variable inside your form element