How to get textbox array value using javascript / jquery
I have an array of text inputs like this:
<input type="textbox" name="mobileno[]"><br>
<input type="textbox" name="mobileno[]"><br>
<input type="textbox" name="mobileno[]"><br>
They are generated at runtime using the add more button.
Is there a way I can use jQuery to extract the value of the input text and pass it in an ajax request?
I created an ajax request, but I cannot get the value of the text input array in the template name = value.
+5
4 answers