I have an input
<input type="text" value="hello" />
and I want to get the value of this and using Jquery, save the value in an array.
How can I do this???
you could run this code for submitting:
$('formname').submit(function() {
alert($(this).serialize());
return false;
});
This would return a string like:
a=1
You could then save this to an array.
form?