Hi i need some hepl to find a selector for jqeury
I have these textboxes
<input type="text" name="text[1]" value="1,2,3">
<input type="text" name="text[2]" value="1,8,9">
<input type="text" name="text[3]" value="7,4,3">
i need for each these textboxes do a search and find if value=1 exist. I need help to the selector (somthing like $(input[name=text[]]).each()
i dont want to use $(input[name^='text']).each(), i dont think its safe because the rest of my code.Is there a better way.
Can any one help