Skip to main content
1 of 3
Vect0rZ
  • 401
  • 2
  • 6

As this question here suggests

jQuery selector for matching at start AND end of ID

You should do the following:

$("input[name ^=//[13//]][name $=//[0//]")

So it reads if the name starts with [13] and ends with [0]

The backslashes '//' are used to tell jQuery that '[' and ']' are not it's reserved brackets.

Vect0rZ
  • 401
  • 2
  • 6