+ 2
How can I get value from a text input area to a variable
5 Respostas
+ 2
Yes you can also get the input bu prompting the user with prompt();
but that is not ideal, it gets really annoying for the user. i would suggest to use getElementById to get the value of a html text box, or textarea in your case
+ 1
var myValue = document.getElementById("myTextAreaID").value
0
Thank you all☺☺
- 1
use java Script
var v=Prompt("Enter the value");
- 2
u can use a prompt box to take a value from the user using JavaScript