I have few text boxes whose ids are A_NAME{0}, A_NAME{1}, A_NAME{2}. I am not able access these textboxes values.
I used below command to access them.
$('#A_NAME{0}').val();
Can someone please help.
You need to escape brackets for this:
$('#A_NAME\\{0\\}').val();
^^ ^^
jsFiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With