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 run time using an "add more" button.
Is there a way I can use jQuery to fetch the text input value and pass it in ajax request?
I have created an ajax request but I'm not able to fetch the value of text input array in name=value pattern.