I need help getting javascript to read an html input form, and assign the input to an array, or atleast what i think is an array….im not sure.
i want to take the data from an html form, and put it in here:
var users = ['"This is a random qoute"-lastname,firstname."','"This is a random
qoute"-lastname,firstname."'];
is this possible?
If you want an array of the text input names and values, the following will do the job. If you want to
serialize a form for posting, that takes a little more code.
Shows
"userName: <value>, userAge: <value>"