nested form element selection

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

  1. $j('input[name*=txt\\[*\\]\\[amount\\]]').bind('blur', function() {
  2.  // operations
  3. });

Is this possible? Any help is definitely appreciated.