http://docs.jquery.com/Selectors Look at the Attribute filters.
Assuming they're all INPUT fields: $("input[name^=tx_qtde]") which means all input fields with NAME that begins with 'tx_qtde' Otherwise you can just drop the 'input' $("[name^=tx_qtde]") but it'll look through all element types. On Sep 25, 4:12 pm, Carlos Santos <carloeasan...@gmail.com> wrote: > I have in one form, many, many text fields with similar names such > as: > > tx_qtde1 > tx_qtde2 > tx_qtde3 > > how i can select all this text fields without using a class, something > like: > > $("tx_qtde * ") > > where the * is the numbers. > > Thanks for your time. > Carlos Santos