I'm trying to get the values from multiple textboxes using JQuery.
I'm a bit of a newbie with Javascript in general. I have a form with the following input element:
<input name="milkman" value="jessie"/>
<input name="letterman2" value="jim" />
<input name="newmilk" />
I get the values of the first two input elements using:
var test_arr = $("input[name*='man']").val();
How do I get at the individual textbox values? When I use the alert() function to echo the value of test_arr, all I see is the first element's value.
Kindly assist.