Lets say I have named some elements with the following structure:
- 1:0
- 11:0
- 21:0
When I was looking for the value of 1:0 I found that the following code returned everything with a 1:0 in it:
alert($("[name$=" + arrayVal[i] + "]").val());
However when I took the "$" out it appears to only return the 1:0 in my above example. I did a quick search on Google but couldn't find anything to support this finding. Does anyone have any links they could point me to for this?
Thanks!