Working on some AJAX code. Need to get the value of a form array to send over to the PHP handler. Using the usual document.getElementById does not work.
Here is a form field example.
<input type="text" name="quantity[]" class="input_01" style=" width:15px;" onkeypress="return isNumberKey(event)" id="quantity[]" />
These are repeated several times. I have it going to a PHP handler directly now and I pickup the arrays using $_REQUEST but need to do some AJAX on the values before submitting.
Thanks