nested form element selection
I am experiencing a problem that I have not been able to resolve with research.
Using a group of nested form elements (IE. <input id="txt[0][amount]">, <input id="txt[1][amount]">).
I am not able to come up with a method of selecting and assigning a bind event to anything matching the specified group of input elements
- $j('input[name*=txt\\[*\\]\\[amount\\]]').bind('blur', function() {
- // operations
- });
Is this possible? Any help is definitely appreciated.