I have a textbox array in my form. The textbox(s) are dynamically added using javascript function. The text box are named as below:
account[0]_number account[0]_balance
account[1]_number account[1]_balance
How can I get the values of these textboxes using jquery?
Below is how I tried, but it gives error:
if($('#account[' + iteration + ']_balance').val().length==0)